結果

問題 No.1337 Fair Otoshidama
ユーザー chineristACchineristAC
提出日時 2021-01-15 21:27:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 84 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 53,692 KB
最終ジャッジ日時 2024-05-04 22:41:59
合計ジャッジ時間 1,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,076 KB
testcase_01 AC 33 ms
52,468 KB
testcase_02 AC 33 ms
52,464 KB
testcase_03 AC 32 ms
52,300 KB
testcase_04 AC 32 ms
52,136 KB
testcase_05 AC 32 ms
53,120 KB
testcase_06 AC 33 ms
51,996 KB
testcase_07 AC 33 ms
52,900 KB
testcase_08 AC 33 ms
52,072 KB
testcase_09 AC 34 ms
52,688 KB
testcase_10 AC 32 ms
52,680 KB
testcase_11 AC 34 ms
52,532 KB
testcase_12 AC 34 ms
52,136 KB
testcase_13 AC 33 ms
53,692 KB
testcase_14 AC 32 ms
51,756 KB
testcase_15 AC 33 ms
53,412 KB
testcase_16 AC 34 ms
52,248 KB
testcase_17 AC 34 ms
52,416 KB
testcase_18 AC 33 ms
51,820 KB
testcase_19 AC 33 ms
52,744 KB
testcase_20 AC 33 ms
52,684 KB
testcase_21 AC 34 ms
52,340 KB
testcase_22 AC 32 ms
52,776 KB
testcase_23 AC 33 ms
51,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = sum(map(int,input().split()))
if S%3==0:
    print("Yes")
else:
    print("No")
0