結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー ks2mks2m
提出日時 2022-10-14 21:22:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 2,417 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-06-26 13:05:28
合計ジャッジ時間 4,571 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		String s = sc.nextLine();
		sc.close();

		if (s.equals("Zelkova and Cherry")) System.out.println("1st");
		if (s.equals("BANNED CONTEST")) System.out.println("2nd");
		if (s.equals("Stray Bullet")) System.out.println("3rd");
		if (s.equals("Early Summer Rain")) System.out.println("4th");
		if (s.equals("Do you know Cherry Contest?")) System.out.println("Alpha");
	}
}
0