結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー ks2mks2m
提出日時 2021-10-29 21:25:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 2,032 ms
コンパイル使用メモリ 75,972 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-10-07 09:44:03
合計ジャッジ時間 7,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,080 KB
testcase_01 AC 172 ms
41,908 KB
testcase_02 AC 227 ms
44,104 KB
testcase_03 AC 213 ms
43,976 KB
testcase_04 AC 210 ms
43,140 KB
testcase_05 AC 191 ms
42,292 KB
testcase_06 AC 160 ms
41,740 KB
testcase_07 AC 179 ms
42,032 KB
testcase_08 AC 226 ms
44,152 KB
testcase_09 AC 181 ms
42,236 KB
testcase_10 AC 141 ms
41,388 KB
testcase_11 AC 229 ms
44,244 KB
testcase_12 AC 236 ms
43,956 KB
testcase_13 AC 231 ms
44,312 KB
testcase_14 AC 235 ms
44,456 KB
testcase_15 AC 228 ms
44,224 KB
testcase_16 AC 244 ms
43,912 KB
testcase_17 AC 233 ms
44,164 KB
testcase_18 AC 228 ms
44,404 KB
testcase_19 AC 236 ms
44,120 KB
testcase_20 AC 234 ms
44,108 KB
testcase_21 AC 116 ms
41,096 KB
testcase_22 AC 115 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[] x = new int[n];
		for (int i = 0; i < n; i++) {
			x[i] = sc.nextInt();
		}
		TreeSet<Integer> y = new TreeSet<>();
		for (int i = 0; i < m; i++) {
			y.add(sc.nextInt());
		}
		sc.close();

		for (int i = 0; i < n; i++) {
			Integer a = y.higher(x[i]);
			if (a == null) {
				System.out.println("Infinity");
			} else {
				System.out.println(a - x[i]);
			}
		}
	}
}
0