結果

問題 No.2379 Burnside's Theorem
ユーザー YTOKYTOK
提出日時 2023-07-14 22:37:25
言語 Julia
(1.10.2)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 7,204 KB
実行使用メモリ 241,336 KB
最終ジャッジ日時 2024-10-01 17:26:40
合計ジャッジ時間 8,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
240,444 KB
testcase_01 AC 270 ms
239,932 KB
testcase_02 AC 268 ms
240,060 KB
testcase_03 AC 275 ms
239,992 KB
testcase_04 AC 271 ms
240,448 KB
testcase_05 AC 275 ms
240,952 KB
testcase_06 AC 270 ms
240,444 KB
testcase_07 AC 268 ms
241,336 KB
testcase_08 AC 270 ms
240,060 KB
testcase_09 AC 268 ms
240,960 KB
testcase_10 AC 277 ms
240,056 KB
testcase_11 AC 274 ms
240,828 KB
testcase_12 AC 269 ms
240,188 KB
testcase_13 AC 275 ms
240,828 KB
testcase_14 AC 275 ms
240,060 KB
testcase_15 AC 278 ms
240,828 KB
testcase_16 AC 270 ms
240,952 KB
testcase_17 AC 271 ms
240,440 KB
testcase_18 AC 273 ms
240,888 KB
testcase_19 AC 270 ms
240,248 KB
testcase_20 AC 271 ms
240,312 KB
testcase_21 AC 276 ms
239,932 KB
testcase_22 AC 268 ms
239,932 KB
testcase_23 AC 282 ms
241,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

toI(s=readline()) = parse(Int,s)
toVI(s=readline()) = toI.(split(s))
rep(f,n) = [f() for _ in 1:n]
pYesNo(b) = ifelse(b,"Yes","No") |> println

function main()
	n = toI()
	solve(n) |> pYesNo
end

function solve(n)
	length(factor(n)) ≤ 2
end

function factor(n)
	xs = Pair{Int,Int}[]
	n == 1 && return xs
	x = n
	for i in 2:isqrt(n)
		x % i == 0 || continue
		cnt = 0
		while x % i == 0
			cnt += 1
			x ÷= i
		end
		push!(xs,i=>cnt)
	end
	if x > 1
		push!(xs,x=>1)
	end
	xs
end

main()
0