Submission #1481216


Source Code Expand

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import sys
import re
import math
import collections
import itertools
import functools

DEBUG = True
DEBUG = False

def dbg(*args):
    if DEBUG:
        print("DBG: ", file=sys.stderr, end="")
        print(*args, file=sys.stderr)



def main():
    N, M = map(int, input().split())

    nc = 2*N + M
    print(nc // 4)

if __name__ == "__main__": main()

Submission Info

Submission Time
Task C - Scc Puzzle
User yumsiim
Language Python (3.4.3)
Score 0
Code Size 430 Byte
Status WA
Exec Time 37 ms
Memory 4084 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
AC × 5
WA × 4
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt
All 00_example_01.txt, 00_example_02.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 37 ms 4084 KB
00_example_02.txt AC 24 ms 3828 KB
01.txt WA 24 ms 3828 KB
02.txt AC 24 ms 3828 KB
03.txt WA 25 ms 3828 KB
04.txt WA 24 ms 3828 KB
05.txt WA 24 ms 3828 KB
06.txt AC 24 ms 3828 KB
07.txt AC 24 ms 3828 KB