結果

問題 No.893 お客様を誘導せよ
ユーザー Beat7501Beat7501
提出日時 2019-10-25 20:22:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,320 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 2,690 ms
コンパイル使用メモリ 76,252 KB
実行使用メモリ 59,100 KB
最終ジャッジ日時 2024-07-21 20:40:20
合計ジャッジ時間 10,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
41,500 KB
testcase_01 AC 153 ms
41,596 KB
testcase_02 AC 452 ms
48,140 KB
testcase_03 AC 836 ms
58,488 KB
testcase_04 AC 835 ms
58,128 KB
testcase_05 AC 804 ms
52,836 KB
testcase_06 AC 676 ms
48,924 KB
testcase_07 AC 148 ms
41,328 KB
testcase_08 AC 1,320 ms
59,100 KB
testcase_09 AC 268 ms
44,276 KB
testcase_10 AC 168 ms
41,624 KB
testcase_11 AC 225 ms
43,272 KB
testcase_12 AC 284 ms
44,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main5{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[][] p = new int[n][];
		int[] nin = new int[n];
		int sum = 0;
		for(int i = 0; i < n; i++){
			nin[i] = sc.nextInt();
			sum += nin[i];
			p[i] = new int[nin[i]];
			for(int j = 0; j < nin[i]; j++){
				p[i][j] = sc.nextInt();
			}
		}
		int i = 0;
		boolean flag = true;
		while(flag){
			flag = false;
			for(int j = 0; j < n; j++){
				if(nin[j] > i){
					System.out.print(p[j][i] + " ");
					flag = true;
				}
			}
			i++;
		}
	}
}
0