結果
| 問題 | No.3659 CONSTRUCTION 1,2,3 |
| コンテスト | |
| ユーザー |
回転
|
| 提出日時 | 2026-08-30 15:19:27 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 288 bytes |
| 記録 | |
| コンパイル時間 | 238 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 79,232 KB |
| 最終ジャッジ日時 | 2026-08-30 15:19:35 |
| 合計ジャッジ時間 | 2,751 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 WA * 3 |
ソースコード
from itertools import permutations
A,B,C = list(map(int,input().split()))
for a,b,c in permutations([A,B,C]):
if(a%1 == 0 and b%2 == 0 and c%3 == 0):
print("Yes")
exit()
if(a%3 == 0 and b%4 == 0 and c%4 == 0):
print("Yes")
exit()
print("No")
回転