結果

問題 No.1249 小学校1年生の夢
ユーザー Murakami Satoru
提出日時 2020-12-02 14:05:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-09-13 10:09:43
合計ジャッジ時間 2,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

num_list = list(map(int, input().split()))

if(num_list[0] + num_list[1] == num_list[2]) :
    print("Correct\n")
else :
    print("Incorrect\n")
0