結果

問題 No.1119 Division 3
ユーザー first_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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

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