結果

問題 No.5004 Room Assignment
ユーザー watarimaycry2
提出日時 2021-12-01 00:37:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 446 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 2,484 ms
実行使用メモリ 75,732 KB
スコア 0
平均クエリ数 3600.00
最終ジャッジ日時 2021-12-01 00:37:56
合計ジャッジ時間 47,773 ms
ジャッジサーバーID
(参考情報)
judge16 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
    public static void main(String arg[]){
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        int R = sc.nextInt();
        for(int i = 0; i < T; i++){
            int N = sc.nextInt();
            while(N > 0){
                int v = sc.nextInt();
                N--;
            }
            System.out.println("0");
            System.out.flush();
        }
    }
}
0