結果
問題 | No.300 平方数 |
ユーザー |
![]() |
提出日時 | 2015-11-14 01:01:47 |
言語 | OCaml (5.2.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 264 bytes |
コンパイル時間 | 407 ms |
コンパイル使用メモリ | 19,692 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 23:42:08 |
合計ジャッジ時間 | 1,775 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | AC * 28 WA * 15 |
ソースコード
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)