結果

問題 No.1155 Nada Picnic
ユーザー ishii yuki
提出日時 2020-08-17 21:50:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-10-11 11:18:55
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
権限があれば一括ダウンロードができます

ソースコード

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