結果

問題 No.1469 programing
ユーザー eseharaesehara
提出日時 2021-06-02 01:27:13
言語 OCaml
(5.1.0)
結果
AC  
実行時間 2,741 ms / 3,000 ms
コード長 200 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 19,692 KB
実行使用メモリ 265,248 KB
最終ジャッジ日時 2024-11-09 00:26:01
合計ジャッジ時間 4,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 47 ms
11,104 KB
testcase_09 AC 60 ms
11,104 KB
testcase_10 AC 57 ms
11,108 KB
testcase_11 AC 38 ms
19,332 KB
testcase_12 AC 25 ms
11,120 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 45 ms
19,332 KB
testcase_15 AC 167 ms
19,320 KB
testcase_16 AC 279 ms
35,716 KB
testcase_17 AC 2,741 ms
265,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let rec read_byte last =
  try
    let x = input_char stdin in
    if (last = x)
    then read_byte last
    else print_char x; read_byte x;
  with
  | End_of_file -> ();;

let () = read_byte '\x00';;
0