結果

問題 No.1337 Fair Otoshidama
ユーザー googol_S0googol_S0
提出日時 2021-01-15 21:25:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 79 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 53,596 KB
最終ジャッジ日時 2024-05-04 22:36:17
合計ジャッジ時間 1,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,452 KB
testcase_01 AC 33 ms
52,192 KB
testcase_02 AC 34 ms
53,048 KB
testcase_03 AC 34 ms
52,756 KB
testcase_04 AC 34 ms
53,016 KB
testcase_05 AC 33 ms
52,856 KB
testcase_06 AC 35 ms
53,524 KB
testcase_07 AC 36 ms
52,884 KB
testcase_08 AC 34 ms
52,324 KB
testcase_09 AC 33 ms
52,620 KB
testcase_10 AC 38 ms
51,876 KB
testcase_11 AC 35 ms
52,268 KB
testcase_12 AC 35 ms
51,872 KB
testcase_13 AC 37 ms
52,092 KB
testcase_14 AC 38 ms
52,452 KB
testcase_15 AC 35 ms
52,912 KB
testcase_16 AC 36 ms
52,480 KB
testcase_17 AC 36 ms
52,404 KB
testcase_18 AC 36 ms
52,724 KB
testcase_19 AC 34 ms
52,204 KB
testcase_20 AC 33 ms
53,596 KB
testcase_21 AC 34 ms
52,908 KB
testcase_22 AC 33 ms
51,952 KB
testcase_23 AC 33 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y,Z=map(int,input().split())
if (X+Y+Z)%3:
  print('No')
else:
  print('Yes')
0