結果

問題 No.1337 Fair Otoshidama
ユーザー O2MTO2MT
提出日時 2021-06-08 01:11:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 86 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 86,712 KB
実行使用メモリ 71,360 KB
最終ジャッジ日時 2023-08-16 17:45:22
合計ジャッジ時間 3,132 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,180 KB
testcase_01 AC 61 ms
70,836 KB
testcase_02 AC 63 ms
71,276 KB
testcase_03 AC 62 ms
70,836 KB
testcase_04 AC 62 ms
71,240 KB
testcase_05 AC 64 ms
70,788 KB
testcase_06 AC 62 ms
71,204 KB
testcase_07 AC 63 ms
71,056 KB
testcase_08 AC 62 ms
71,300 KB
testcase_09 AC 61 ms
71,032 KB
testcase_10 AC 63 ms
71,264 KB
testcase_11 AC 63 ms
71,196 KB
testcase_12 AC 65 ms
70,852 KB
testcase_13 AC 63 ms
70,936 KB
testcase_14 AC 62 ms
71,304 KB
testcase_15 AC 64 ms
70,964 KB
testcase_16 AC 62 ms
70,944 KB
testcase_17 AC 62 ms
71,084 KB
testcase_18 AC 62 ms
71,036 KB
testcase_19 AC 61 ms
71,220 KB
testcase_20 AC 60 ms
71,360 KB
testcase_21 AC 61 ms
70,916 KB
testcase_22 AC 64 ms
71,260 KB
testcase_23 AC 63 ms
71,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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