結果

問題 No.1337 Fair Otoshidama
ユーザー GER_chenGER_chen
提出日時 2021-01-22 13:56:33
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 90 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 10,648 KB
実行使用メモリ 7,980 KB
最終ジャッジ日時 2023-08-27 04:39:10
合計ジャッジ時間 2,288 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,748 KB
testcase_01 WA -
testcase_02 AC 16 ms
7,752 KB
testcase_03 AC 16 ms
7,728 KB
testcase_04 AC 15 ms
7,824 KB
testcase_05 AC 16 ms
7,752 KB
testcase_06 AC 16 ms
7,800 KB
testcase_07 AC 14 ms
7,976 KB
testcase_08 AC 15 ms
7,856 KB
testcase_09 WA -
testcase_10 AC 15 ms
7,944 KB
testcase_11 AC 15 ms
7,808 KB
testcase_12 WA -
testcase_13 AC 15 ms
7,772 KB
testcase_14 AC 15 ms
7,764 KB
testcase_15 WA -
testcase_16 AC 15 ms
7,968 KB
testcase_17 AC 15 ms
7,804 KB
testcase_18 WA -
testcase_19 AC 15 ms
7,808 KB
testcase_20 AC 15 ms
7,816 KB
testcase_21 WA -
testcase_22 AC 16 ms
7,800 KB
testcase_23 AC 14 ms
7,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki-1337
X, Y, Z = map(int, input().split())
b = bool((X+Y+Z)//3)
print('YNeos'[1-b::2])
0