結果

問題 No.1119 Division 3
ユーザー first_vilfirst_vil
提出日時 2020-07-22 21:45:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 83 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-06-22 15:13:09
合計ジャッジ時間 1,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,392 KB
testcase_01 AC 32 ms
52,312 KB
testcase_02 AC 32 ms
52,576 KB
testcase_03 AC 32 ms
52,224 KB
testcase_04 AC 32 ms
52,604 KB
testcase_05 AC 30 ms
52,280 KB
testcase_06 AC 30 ms
52,420 KB
testcase_07 AC 30 ms
53,376 KB
testcase_08 AC 33 ms
52,412 KB
testcase_09 AC 31 ms
52,616 KB
testcase_10 AC 31 ms
52,316 KB
testcase_11 AC 32 ms
52,672 KB
testcase_12 AC 31 ms
53,572 KB
testcase_13 AC 30 ms
52,404 KB
testcase_14 AC 30 ms
53,544 KB
testcase_15 AC 31 ms
53,172 KB
testcase_16 AC 31 ms
52,624 KB
testcase_17 AC 31 ms
52,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,z=map(int,input().split())
print('Yes' if x%3==0 or y%3==0 or z%3==0 else 'No')
0