結果

問題 No.1249 小学校1年生の夢
ユーザー 8nd5t8nd5t
提出日時 2020-10-09 21:22:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 1,218 ms
コンパイル使用メモリ 86,872 KB
実行使用メモリ 71,952 KB
最終ジャッジ日時 2023-09-27 14:01:45
合計ジャッジ時間 4,088 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
71,840 KB
testcase_01 AC 82 ms
71,520 KB
testcase_02 AC 80 ms
71,572 KB
testcase_03 AC 85 ms
71,308 KB
testcase_04 AC 88 ms
71,944 KB
testcase_05 AC 86 ms
71,700 KB
testcase_06 AC 87 ms
71,680 KB
testcase_07 AC 82 ms
71,896 KB
testcase_08 AC 79 ms
71,568 KB
testcase_09 AC 80 ms
71,528 KB
testcase_10 AC 79 ms
71,836 KB
testcase_11 AC 80 ms
71,608 KB
testcase_12 AC 80 ms
71,532 KB
testcase_13 AC 80 ms
71,340 KB
testcase_14 AC 79 ms
71,528 KB
testcase_15 AC 81 ms
71,384 KB
testcase_16 AC 79 ms
71,304 KB
testcase_17 AC 81 ms
71,516 KB
testcase_18 AC 79 ms
71,696 KB
testcase_19 AC 81 ms
71,704 KB
testcase_20 AC 80 ms
71,388 KB
testcase_21 AC 81 ms
71,304 KB
testcase_22 AC 86 ms
71,676 KB
testcase_23 AC 84 ms
71,312 KB
testcase_24 AC 76 ms
71,472 KB
testcase_25 AC 77 ms
71,952 KB
testcase_26 AC 77 ms
71,724 KB
testcase_27 AC 77 ms
71,708 KB
testcase_28 AC 80 ms
71,676 KB
testcase_29 AC 76 ms
71,468 KB
testcase_30 AC 76 ms
71,464 KB
testcase_31 AC 79 ms
71,492 KB
testcase_32 AC 77 ms
71,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math,itertools
from collections import Counter,deque,defaultdict
from bisect import bisect_left,bisect_right 
mod = 10**9+7
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))

a,b,c = inpl()
print('Correct' if a+b == c else 'Incorrect')
0