結果

問題 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)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 320 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 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
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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")
0