結果

問題 No.1155 Nada Picnic
ユーザー ishii yukiishii yuki
提出日時 2020-08-17 21:50:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 75,640 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-04-19 19:07:43
合計ジャッジ時間 3,230 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
41,328 KB
testcase_01 AC 102 ms
41,584 KB
testcase_02 AC 109 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        int N = in.nextInt();
        
        switch(N){
            case 1:
                System.out.println("Shiitakerando");
                break;
            case 2:
                System.out.println("Otsukakokusaibijutsukan");
                break;
            case 3:
                System.out.println("Spring-8");
                break;
        }

    }
}
0