結果

問題 No.1155 Nada Picnic
ユーザー Maeda
提出日時 2025-08-25 17:35:30
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 75,880 KB
実行使用メモリ 46,508 KB
最終ジャッジ日時 2025-08-25 17:35:33
合計ジャッジ時間 3,468 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String[] location = {"Shiitakerando","Otsukakokusaibijutsukan","Spring-8"};
		int n = scan.nextInt();
		System.out.println(location[n]);
    }
}

0