結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー GrenacheGrenache
提出日時 2015-07-24 22:48:03
言語 Java19
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 341 bytes
コンパイル時間 5,630 ms
コンパイル使用メモリ 71,520 KB
実行使用メモリ 55,852 KB
最終ジャッジ日時 2023-09-22 22:40:22
合計ジャッジ時間 4,063 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
55,768 KB
testcase_01 AC 118 ms
55,676 KB
testcase_02 AC 118 ms
55,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder249 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

//        for (int i = 0; i < 1000; i++) {
//        	int n = sc.nextInt();
//        	int k = sc.nextInt();
//        }

    	System.out.println("500");
    	
        sc.close();
    }
}
0