結果

問題 No.415 ぴょん
ユーザー ichibanshiboriichibanshibori
提出日時 2016-09-05 23:05:20
言語 OCaml
(5.1.0)
結果
TLE  
実行時間 -
コード長 759 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 24,448 KB
実行使用メモリ 139,552 KB
最終ジャッジ日時 2024-11-13 22:31:46
合計ジャッジ時間 23,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 2 ms
13,632 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 528 ms
41,764 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 7 ms
13,636 KB
testcase_11 AC 2 ms
85,280 KB
testcase_12 AC 8 ms
13,640 KB
testcase_13 AC 9 ms
138,496 KB
testcase_14 AC 6 ms
13,640 KB
testcase_15 AC 4 ms
134,820 KB
testcase_16 AC 5 ms
13,636 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 5 ms
6,816 KB
testcase_19 AC 5 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 20 ms
7,296 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

open Big_int_Z

module BISet = Set.Make( 
    struct
        let compare = compare_big_int
        type t = big_int
    end )

let ( +! ) = add_big_int
let ( %! ) = mod_big_int

let () =
    let arr = Array.make 2 zero_big_int in
    Scanf.scanf "%s %s\n" (fun n d -> arr.(0) <- big_int_of_string n; arr.(1) <- big_int_of_string d);

    let n, d = arr.(0), arr.(1) in
    let rec count_pyon pos hist count =
        let next_pos, next_hist = (pos +! d) %! n, BISet.add pos hist in
        if BISet.mem next_pos next_hist then string_of_big_int count
        else
            let next_count = count +! unit_big_int in
            count_pyon next_pos  next_hist next_count
    in
    count_pyon zero_big_int BISet.empty zero_big_int |>
    Printf.printf "%s\n"
0