結果

問題 No.842 初詣
ユーザー masato-fullmoonmasato-fullmoon
提出日時 2019-07-28 18:59:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-02 15:04:57
合計ジャッジ時間 1,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 30 ms
10,752 KB
testcase_07 RE -
testcase_08 AC 29 ms
10,752 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 29 ms
10,752 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 29 ms
10,880 KB
testcase_15 RE -
testcase_16 AC 29 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 RE -
testcase_20 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C,D,E,F,G = map(int,input().split())
assert 0<=A<=10
assert 0<=B<=10
assert 0<=C<=10
assert 0<=D<=10
assert 0<=E<=10
assert 0<=F<=10
assert 1<=F<=5000

sums = 500*A+100*B+50*C+10*D+5*E+F
if sums == G:
    print('YES')
else:
    print('NO')
0