結果
| 問題 | No.3659 CONSTRUCTION 1,2,3 |
| コンテスト | |
| ユーザー |
𝘪𝘣𝘵𝘰𝘴𝘮-𝟙𝟛𝟞𝟙
|
| 提出日時 | 2026-09-01 15:53:13 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 320 bytes |
| 記録 | |
| コンパイル時間 | 304 ms |
| コンパイル使用メモリ | 21,208 KB |
| 実行使用メモリ | 15,660 KB |
| 最終ジャッジ日時 | 2026-09-01 15:54:05 |
| 合計ジャッジ時間 | 3,556 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 WA * 3 |
ソースコード
A, B, C = map(int, input().split())
from itertools import combinations, combinations_with_replacement, permutations, product
X = [1, 2, 3]
for p in permutations(range(3)):
a = X[p[0]]
b = X[p[1]]
c = X[p[2]]
if A % a == 0 and B % b == 0 and C % c == 0:
print("Yes")
exit()
print("No")
𝘪𝘣𝘵𝘰𝘴𝘮-𝟙𝟛𝟞𝟙