結果

問題 No.2557 緑以下コンテスト
ユーザー viral8viral8
提出日時 2023-12-02 14:30:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 3,031 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2023-12-02 14:31:18
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
54,116 KB
testcase_01 AC 55 ms
54,124 KB
testcase_02 AC 54 ms
54,108 KB
testcase_03 AC 56 ms
54,112 KB
testcase_04 AC 56 ms
54,120 KB
testcase_05 AC 57 ms
54,112 KB
testcase_06 AC 55 ms
54,104 KB
testcase_07 AC 55 ms
54,120 KB
testcase_08 AC 56 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Main{
	private static final BufferedReader br =
		new BufferedReader(new InputStreamReader(System.in));
	private static final PrintWriter out =
		new PrintWriter(System.out);
	public static void main(String[] args)throws IOException{

		int N = Integer.parseInt(br.readLine());
		out.println(N<1200?"green":"difficult");

		br.close();
		out.close();
	}
}
0