結果

問題 No.2379 Burnside's Theorem
ユーザー YTOKYTOK
提出日時 2023-07-14 22:32:43
言語 Julia
(1.10.2)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 240,448 KB
最終ジャッジ日時 2024-10-01 17:26:21
合計ジャッジ時間 8,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
240,188 KB
testcase_01 AC 293 ms
239,292 KB
testcase_02 AC 293 ms
239,672 KB
testcase_03 AC 287 ms
240,188 KB
testcase_04 AC 285 ms
239,672 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 278 ms
239,292 KB
testcase_09 WA -
testcase_10 AC 282 ms
239,416 KB
testcase_11 AC 286 ms
239,292 KB
testcase_12 AC 283 ms
239,296 KB
testcase_13 AC 282 ms
240,448 KB
testcase_14 AC 285 ms
239,676 KB
testcase_15 AC 294 ms
239,424 KB
testcase_16 AC 286 ms
239,804 KB
testcase_17 AC 288 ms
239,164 KB
testcase_18 AC 295 ms
239,672 KB
testcase_19 AC 287 ms
240,060 KB
testcase_20 AC 286 ms
239,296 KB
testcase_21 AC 282 ms
240,444 KB
testcase_22 AC 281 ms
239,544 KB
testcase_23 AC 279 ms
239,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

toI(s=readline()) = parse(Int,s)
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}[]
	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 isempty(xs)
		push!(xs,x=>1)
	end
	xs
end

main()
0