結果
問題 | No.2557 緑以下コンテスト |
ユーザー | viral8 |
提出日時 | 2023-12-02 14:30:53 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 400 bytes |
コンパイル時間 | 2,730 ms |
コンパイル使用メモリ | 73,844 KB |
実行使用メモリ | 37,264 KB |
最終ジャッジ日時 | 2024-09-26 16:39:29 |
合計ジャッジ時間 | 3,717 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
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(); } }