結果
問題 |
No.300 平方数
|
ユーザー |
![]() |
提出日時 | 2015-12-11 10:24:21 |
言語 | OCaml (5.2.1) |
結果 |
AC
|
実行時間 | 9 ms / 1,000 ms |
コード長 | 264 bytes |
コンパイル時間 | 355 ms |
コンパイル使用メモリ | 19,692 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 23:44:02 |
合計ジャッジ時間 | 1,814 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 43 |
ソースコード
let rec non_square n i = if n mod 4 = 0 then non_square (n / 4) 3 else if i * i > n then n else if n mod (i * i) = 0 then non_square (n / (i * i)) i else non_square n (i + 2) let () = print_int (non_square (int_of_string (read_line ())) 3)