結果
問題 | No.1090 ソーシャルディスタンス / Social Distance |
ユーザー | maimai8 |
提出日時 | 2020-08-05 19:06:43 |
言語 | OCaml (5.1.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 351 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 21,636 KB |
実行使用メモリ | 9,728 KB |
最終ジャッジ日時 | 2024-10-09 01:57:09 |
合計ジャッジ時間 | 2,374 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 29 ms
8,192 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 4 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 23 ms
7,552 KB |
testcase_08 | WA | - |
testcase_09 | AC | 21 ms
6,528 KB |
testcase_10 | AC | 28 ms
8,192 KB |
testcase_11 | WA | - |
testcase_12 | AC | 24 ms
7,680 KB |
testcase_13 | WA | - |
testcase_14 | AC | 38 ms
9,088 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | AC | 21 ms
7,680 KB |
testcase_20 | AC | 17 ms
6,528 KB |
testcase_21 | AC | 24 ms
7,680 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | WA | - |
testcase_24 | AC | 43 ms
9,600 KB |
ソースコード
let () = Scanf.scanf "%d %d\n" @@ fun n d -> let arr = Array.of_list (0 :: (Array.to_list (Array.init (n-1) @@ fun _ -> Scanf.scanf "%d " @@ fun d -> d))) in for i = 0 to n - 2 do if arr.(i+1) - arr.(i) >= d then () else arr.(i+1) <- arr.(i) + d done; Array.iter (fun x -> print_int x; print_string " ") arr; print_newline ()