結果
| 問題 | No.166 マス埋めゲーム |
| コンテスト | |
| ユーザー |
r6eve
|
| 提出日時 | 2017-08-15 22:29:57 |
| 言語 | OCaml (5.5.0) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 197 bytes |
| 記録 | |
| コンパイル時間 | 125 ms |
| コンパイル使用メモリ | 22,436 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-12 07:17:16 |
| 合計ジャッジ時間 | 1,590 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 WA * 11 |
コンパイルメッセージ
ocamlfind: [WARNING] Cannot read directory ./stublibs which is mentioned in ld.conf
ソースコード
let () = let h, w, n, k = Scanf.scanf "%d %d %d %d " (fun h w n k -> h, w, n, k) in let x = n mod (h * w) in let x = if x <> 0 then x else n in print_endline (if x = k then "YES" else "NO")
r6eve