結果
問題 |
No.1155 Nada Picnic
|
ユーザー |
|
提出日時 | 2020-08-19 12:55:01 |
言語 | Ruby (3.4.1) |
結果 |
AC
|
実行時間 | 97 ms / 2,000 ms |
コード長 | 182 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,160 KB |
最終ジャッジ日時 | 2024-10-12 03:40:24 |
合計ジャッジ時間 | 1,412 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
コンパイルメッセージ
Syntax OK
ソースコード
# frozen_string_literal: true def solve case N when 1 then 'Shiitakerando' when 2 then 'Otsukakokusaibijutsukan' when 3 then 'Spring-8' end end N = gets.to_i puts solve