結果

問題 No.2379 Burnside's Theorem
ユーザー 𖧱𖦸𖥩𖥣𖥩𖥣
提出日時 2024-06-09 12:39:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 164 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-29 23:45:04
合計ジャッジ時間 3,189 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 2
other AC * 12 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n = int(input())
c = 0
for i in range(2, int(n**0.5)+1):
	if c % i == 0:
		c += 1
		while c%i == 0:
			c /= 0
if c <= 2:
	print("Yes")
else:
	print("No")
0