結果
問題 | No.333 門松列を数え上げ |
ユーザー | siman |
提出日時 | 2016-03-19 23:11:53 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 176 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-10-01 09:17:33 |
合計ジャッジ時間 | 1,614 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 83 ms
12,032 KB |
testcase_01 | AC | 89 ms
12,160 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 81 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
class Yukicoder def initialize a, b = gets.chomp.split(' ').map(&:to_i) if a < b puts b - a else puts 2000000000 - a end end end Yukicoder.new