結果

問題 No.1249 小学校1年生の夢
ユーザー ABKZABKZ
提出日時 2021-08-04 18:38:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 85 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 86,816 KB
実行使用メモリ 71,344 KB
最終ジャッジ日時 2023-10-14 21:23:37
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,020 KB
testcase_01 AC 77 ms
71,304 KB
testcase_02 AC 78 ms
70,876 KB
testcase_03 AC 78 ms
71,220 KB
testcase_04 AC 77 ms
71,312 KB
testcase_05 AC 77 ms
71,016 KB
testcase_06 AC 76 ms
71,128 KB
testcase_07 AC 77 ms
71,216 KB
testcase_08 AC 76 ms
70,868 KB
testcase_09 AC 77 ms
71,204 KB
testcase_10 AC 77 ms
71,144 KB
testcase_11 AC 77 ms
71,040 KB
testcase_12 AC 77 ms
70,812 KB
testcase_13 AC 77 ms
70,872 KB
testcase_14 AC 77 ms
71,060 KB
testcase_15 AC 76 ms
71,044 KB
testcase_16 AC 76 ms
71,044 KB
testcase_17 AC 77 ms
71,228 KB
testcase_18 AC 76 ms
70,960 KB
testcase_19 AC 76 ms
70,692 KB
testcase_20 AC 75 ms
70,956 KB
testcase_21 AC 77 ms
71,012 KB
testcase_22 AC 76 ms
70,716 KB
testcase_23 AC 76 ms
70,988 KB
testcase_24 AC 76 ms
71,204 KB
testcase_25 AC 76 ms
70,876 KB
testcase_26 AC 76 ms
70,716 KB
testcase_27 AC 76 ms
71,344 KB
testcase_28 AC 76 ms
71,032 KB
testcase_29 AC 76 ms
70,768 KB
testcase_30 AC 76 ms
70,864 KB
testcase_31 AC 77 ms
71,264 KB
testcase_32 AC 78 ms
71,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())

print("Correct" if C == A + B else "Incorrect")
0