結果
| 問題 |
No.1119 Division 3
|
| コンテスト | |
| ユーザー |
mesame3993
|
| 提出日時 | 2021-11-18 21:40:22 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 49 ms / 1,000 ms |
| コード長 | 150 bytes |
| コンパイル時間 | 530 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 51,840 KB |
| 最終ジャッジ日時 | 2024-12-27 18:09:23 |
| 合計ジャッジ時間 | 2,171 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 16 |
ソースコード
def main():
from sys import stdin
readline=stdin.readline
x,y,z = map(int, readline().split())
print('Yes' if (x*y*z)%3 == 0 else 'No')
main()
mesame3993