結果

問題 No.300 平方数
ユーザー piconic_Xpiconic_X
提出日時 2015-11-14 01:01:47
言語 OCaml
(5.1.0)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 19,948 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-17 08:31:59
合計ジャッジ時間 1,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

let rec non_square n i =
  if i * i > n then n
  else
    if n mod 4 = 0 then non_square (n / 4) 3
    else
      if n mod (i * i) = 0 then non_square (n / i) (i + 2)
      else non_square n (i + 2)

let () = print_int (non_square (int_of_string (read_line ())) 3)
0