結果

問題 No.2557 緑以下コンテスト
ユーザー sysnote8mainsysnote8main
提出日時 2024-02-03 22:19:32
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-09-28 11:03:42
合計ジャッジ時間 3,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
  public static void log(String msg) {
    System.out.println(msg);
  }
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    log(sc.nextInt() < 1200 ? "green": "difficult");
  }
}
0