結果
問題 | No.558 575検出するやつ |
ユーザー | xsd |
提出日時 | 2020-06-14 19:36:11 |
言語 | OCaml (5.2.1) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 221 bytes |
コンパイル時間 | 380 ms |
コンパイル使用メモリ | 21,700 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 01:11:41 |
合計ジャッジ時間 | 1,004 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 15 |
ソースコード
Scanf.scanf "%s" (fun s -> let rec loop i = if i < 0 then "NO" else if String.sub s i 3 = "575" then "YES" else loop (i - 1) in loop (String.length s - 3) |> print_endline )