結果

問題 No.632 穴埋め門松列
ユーザー jiro8719jiro8719
提出日時 2018-06-18 17:59:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 91 ms / 1,000 ms
コード長 408 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-30 16:58:44
合計ジャッジ時間 1,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 88 ms
12,416 KB
testcase_03 AC 91 ms
12,416 KB
testcase_04 AC 88 ms
12,416 KB
testcase_05 AC 89 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - c
Syntax OK

ソースコード

diff #

input = gets.split(" ")
a = input[0]
b = input[1]
c = input[2]


    case a
    when "?"
        if b == "2"
            puts 4
        elsif b == "3"
            puts 1
        end
    when "2"
        if b == "3"
            puts 1
        elsif b == "?"
            puts 14
        end
    when "3"
        if b == "2"
            puts 4
        elsif b == "?"
            puts 14
        end
    end
    
0