結果

問題 No.300 平方数
ユーザー piconic_Xpiconic_X
提出日時 2015-11-14 00:00:27
言語 OCaml
(5.1.0)
結果
RE  
実行時間 -
コード長 749 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 19,572 KB
実行使用メモリ 11,132 KB
最終ジャッジ日時 2024-04-17 08:31:45
合計ジャッジ時間 1,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
10,940 KB
testcase_01 AC 8 ms
10,900 KB
testcase_02 AC 8 ms
10,908 KB
testcase_03 AC 9 ms
11,000 KB
testcase_04 AC 7 ms
10,936 KB
testcase_05 AC 7 ms
10,936 KB
testcase_06 AC 8 ms
10,908 KB
testcase_07 AC 8 ms
10,900 KB
testcase_08 AC 7 ms
10,904 KB
testcase_09 AC 8 ms
10,940 KB
testcase_10 AC 8 ms
11,000 KB
testcase_11 AC 7 ms
10,908 KB
testcase_12 AC 8 ms
10,940 KB
testcase_13 AC 14 ms
10,908 KB
testcase_14 AC 7 ms
10,908 KB
testcase_15 AC 7 ms
11,128 KB
testcase_16 AC 8 ms
10,968 KB
testcase_17 AC 9 ms
10,968 KB
testcase_18 AC 8 ms
10,904 KB
testcase_19 AC 7 ms
10,936 KB
testcase_20 RE -
testcase_21 AC 8 ms
10,972 KB
testcase_22 AC 8 ms
10,904 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 9 ms
10,900 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 7 ms
10,908 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

let rec factriz i ls n =
  if i * i > n then n :: ls
  else
    if i = 2 then
      if n mod 2 = 0 then factriz i (i :: ls) (n / i)
      else factriz (i+1) ls n
    else
      if n mod i = 0 then
	factriz i (i :: ls) (n / i)
      else
	factriz (i+2) ls n

let arr n = Array.make 1000000 0

let counter ls arr =
  for i = 0 to List.length ls - 1 do
    arr.(List.nth ls i) <- arr.(List.nth ls i) + 1
  done

let rec main arr ls i =
  if i > Array.length arr - 1 then List.fold_left (fun x y -> x * y) 1 ls
  else
    if arr.(i) mod 2 = 0 then main arr ls (i+1)
    else main arr (i :: ls) (i+1)

let () =
  let n = int_of_string (read_line ()) in
  let arr = arr n in
  let facts = factriz 2 [] n in
  counter facts arr;
  print_int (main arr [] 0)
0