結果

問題 No.2379 Burnside's Theorem
ユーザー ニックネームニックネーム
提出日時 2023-07-14 21:22:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 131 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-16 06:08:01
合計ジャッジ時間 2,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 70 ms
10,624 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 34 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 33 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 33 ms
10,496 KB
testcase_13 AC 106 ms
10,624 KB
testcase_14 AC 137 ms
10,624 KB
testcase_15 AC 165 ms
10,496 KB
testcase_16 AC 41 ms
10,624 KB
testcase_17 AC 31 ms
10,496 KB
testcase_18 AC 163 ms
10,496 KB
testcase_19 AC 69 ms
10,496 KB
testcase_20 AC 113 ms
10,496 KB
testcase_21 AC 149 ms
10,624 KB
testcase_22 AC 28 ms
10,496 KB
testcase_23 AC 147 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = set()
for i in range(2,int(n**0.5)+1):
    while n%i==0: n //= i; s.add(i)
print("Yes" if len(s)<=2 else "No")
0