結果
問題 | No.5000 特殊ジャッジテスト(テスト用) |
ユーザー | okenineko25 |
提出日時 | 2015-04-24 02:47:54 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 187 bytes |
コンパイル時間 | 636 ms |
実行使用メモリ | 3,936 KB |
スコア | 0 |
最終ジャッジ日時 | 2018-03-11 23:59:53 |
ジャッジサーバーID (参考情報) |
judge6 / |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
コンパイルメッセージ
Syntax OK
ソースコード
input_file = ARGV[0] output_file = ARGV[1] f = open(input_file, "r") input = f.read f.close a = 2 b = input.to_i - a f_w = open(output_file, "w") f_w.puts(a.to_s + " " + b.to_s) f_w.close