結果
| 問題 |
No.5004 Room Assignment
|
| コンテスト | |
| ユーザー |
watarimaycry2
|
| 提出日時 | 2021-12-01 00:30:26 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 421 bytes |
| コンパイル時間 | 1,819 ms |
| 実行使用メモリ | 75,968 KB |
| スコア | 0 |
| 最終ジャッジ日時 | 2021-12-01 00:30:42 |
| 合計ジャッジ時間 | 14,598 ms |
|
ジャッジサーバーID (参考情報) |
judge14 / judge11 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 99 |
ソースコード
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();
}
System.out.println("0");
System.out.flush();
}
}
}
watarimaycry2