結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー Grenache
提出日時 2015-07-24 22:40:00
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 341 bytes
コンパイル時間 3,347 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 43,584 KB
最終ジャッジ日時 2024-07-08 13:17:47
合計ジャッジ時間 4,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 1 RE * 2
権限があれば一括ダウンロードができます

ソースコード

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