結果

問題 No.3060 サンプルケース至上主義
ユーザー HaarHaar
提出日時 2020-04-02 04:01:45
言語 Ruby
(3.3.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 11,296 KB
実行使用メモリ 15,268 KB
最終ジャッジ日時 2023-09-09 23:27:52
合計ジャッジ時間 2,221 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# coding: utf-8

a = STDIN.readlines
#p a

if a == ["0\n"]
  puts "Nothing"
elsif a == ["3.14159265\n"]
  puts "pi"
elsif a == ["1112345678999+X\n", "19m19p19s東南西北白發中+Y\n"]
  puts "九蓮宝燈"
  puts "Thirteen Orphans"
elsif a == ["All your base are belong to us.\n"]
  puts <<'EOS'
3
4
4
3
6
2
2
EOS
elsif a == ["くぁwせdrftgyふじこlp\n"]
  puts "さmpぇ"
end
0