結果

問題 No.3060 サンプルケース至上主義
ユーザー yuruhiyayuruhiya
提出日時 2020-04-01 21:41:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 11,564 KB
実行使用メモリ 15,280 KB
最終ジャッジ日時 2023-09-09 17:22:54
合計ジャッジ時間 1,017 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
15,160 KB
testcase_01 AC 75 ms
15,044 KB
testcase_02 AC 75 ms
15,144 KB
testcase_03 AC 75 ms
15,280 KB
testcase_04 AC 76 ms
15,264 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s = gets.chomp
if s == "0"
    puts "Nothing"
elsif s == "3.14159265"
    puts "pi"
elsif s == "1112345678999+X"
    puts "九蓮宝燈\nThirteen Orphans"
elsif s == "All your base are belong to us."
    puts "3\n4\n4\n3\n6\n2\n2"
elsif s == "くぁwせdrftgyふじこlp"
    puts "さmpぇ"
end
0