結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | arito_asu |
提出日時 | 2020-06-17 20:47:06 |
言語 | OCaml (5.1.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 218 bytes |
コンパイル時間 | 375 ms |
コンパイル使用メモリ | 19,820 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 01:23:07 |
合計ジャッジ時間 | 782 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
ソースコード
let inp = Str.split (Str.regexp " ") (read_line ());; let a = int_of_string (List.nth inp 0);; let b = int_of_string (List.nth inp 1);; let s = read_line () let n = string_of_int (a + b);; print_string (n ^ " " ^ s);;