結果
| 問題 | No.3659 CONSTRUCTION 1,2,3 |
| コンテスト | |
| ユーザー |
prd_xxx
|
| 提出日時 | 2026-08-30 14:06:25 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 230 bytes |
| 記録 | |
| コンパイル時間 | 345 ms |
| コンパイル使用メモリ | 96,360 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-30 14:06:58 |
| 合計ジャッジ時間 | 2,450 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 WA * 3 |
ソースコード
ABC = list(map(int,input().split()))
from itertools import permutations
for ptn in permutations(range(1,4)):
ok = True
for a,p in zip(ABC,ptn):
if a%p: ok = False
if ok:
exit(print('Yes'))
print('No')
prd_xxx