結果

問題 No.1249 小学校1年生の夢
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-21 15:51:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 97 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,284 KB
最終ジャッジ日時 2024-04-23 06:51:37
合計ジャッジ時間 2,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,472 KB
testcase_01 AC 41 ms
52,760 KB
testcase_02 AC 40 ms
51,832 KB
testcase_03 AC 39 ms
52,772 KB
testcase_04 AC 38 ms
51,944 KB
testcase_05 AC 40 ms
52,108 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 44 ms
52,464 KB
testcase_08 AC 40 ms
52,344 KB
testcase_09 AC 38 ms
53,084 KB
testcase_10 AC 39 ms
51,752 KB
testcase_11 AC 38 ms
52,620 KB
testcase_12 AC 38 ms
51,936 KB
testcase_13 AC 42 ms
51,892 KB
testcase_14 AC 39 ms
51,764 KB
testcase_15 AC 39 ms
52,824 KB
testcase_16 AC 40 ms
52,872 KB
testcase_17 AC 40 ms
52,616 KB
testcase_18 AC 38 ms
52,184 KB
testcase_19 AC 43 ms
53,284 KB
testcase_20 AC 43 ms
52,644 KB
testcase_21 AC 39 ms
52,808 KB
testcase_22 AC 40 ms
52,604 KB
testcase_23 AC 42 ms
53,004 KB
testcase_24 AC 41 ms
52,260 KB
testcase_25 AC 38 ms
52,432 KB
testcase_26 AC 37 ms
52,924 KB
testcase_27 AC 38 ms
52,596 KB
testcase_28 AC 38 ms
52,688 KB
testcase_29 AC 37 ms
52,644 KB
testcase_30 AC 38 ms
52,772 KB
testcase_31 AC 39 ms
53,072 KB
testcase_32 AC 37 ms
52,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = map(int,input().split())
if a + b == c:
    print("Correct")
else:
    print("Incorrect")
0