結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー AsahiAsahi
提出日時 2023-02-06 12:58:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 76,740 KB
実行使用メモリ 44,208 KB
最終ジャッジ日時 2024-07-04 17:52:33
合計ジャッジ時間 7,950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,092 KB
testcase_01 AC 163 ms
41,956 KB
testcase_02 AC 210 ms
44,148 KB
testcase_03 AC 205 ms
43,120 KB
testcase_04 AC 204 ms
42,968 KB
testcase_05 AC 177 ms
42,288 KB
testcase_06 AC 167 ms
41,436 KB
testcase_07 AC 187 ms
42,048 KB
testcase_08 AC 218 ms
43,948 KB
testcase_09 AC 188 ms
42,276 KB
testcase_10 AC 145 ms
41,536 KB
testcase_11 AC 207 ms
43,828 KB
testcase_12 AC 219 ms
44,180 KB
testcase_13 AC 222 ms
43,932 KB
testcase_14 AC 225 ms
43,620 KB
testcase_15 AC 224 ms
44,160 KB
testcase_16 AC 220 ms
43,740 KB
testcase_17 AC 215 ms
43,964 KB
testcase_18 AC 211 ms
43,700 KB
testcase_19 AC 220 ms
44,208 KB
testcase_20 AC 214 ms
43,796 KB
testcase_21 AC 112 ms
40,364 KB
testcase_22 AC 126 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException{
        int n = sc.nextInt();
        int m = sc.nextInt();
        int [] x = new int[n];
        TreeSet<Integer> wall = new TreeSet<>();
        for(int i=0;i<n;i++) x[i] = sc.nextInt();
        for(int i=0;i<m;i++) wall.add(sc.nextInt());
        for(int i=0;i<n;i++) {
            if(wall.higher(x[i]) == null) output.println("Infinity");
            else {
                int next_wall = wall.higher(x[i]);
                output.println(next_wall-x[i]);
            }
        }
        output.flush();
    }
}
0