結果
問題 | No.966 引き算をして門松列(その1) |
ユーザー | Takuya Noguchi |
提出日時 | 2020-02-26 01:30:59 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 255 bytes |
コンパイル時間 | 130 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-10-13 14:44:45 |
合計ジャッジ時間 | 1,357 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 77 ms
12,160 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
gets.to_i.times do a, b, c = gets.split.map(&:to_i) result = if b <= 2 -1 elsif a == b && b == c 3 elsif a == b || b == c 1 else 0 end puts result end