結果
問題 | No.817 Coin donation |
ユーザー |
![]() |
提出日時 | 2019-04-19 23:02:22 |
言語 | Java17 (openjdk 17.0.1) |
結果 |
AC
|
実行時間 | 1,073 ms / 2,000 ms |
コード長 | 1,177 bytes |
コンパイル時間 | 1,659 ms |
使用メモリ | 64,720 KB |
最終ジャッジ日時 | 2022-11-22 17:41:01 |
合計ジャッジ時間 | 9,256 ms |
ジャッジサーバーID (参考情報) |
judge12 / judge15 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
37,724 KB |
testcase_01 | AC | 85 ms
37,780 KB |
testcase_02 | AC | 104 ms
37,812 KB |
testcase_03 | AC | 116 ms
38,032 KB |
testcase_04 | AC | 98 ms
37,888 KB |
testcase_05 | AC | 258 ms
44,100 KB |
testcase_06 | AC | 373 ms
45,088 KB |
testcase_07 | AC | 422 ms
46,692 KB |
testcase_08 | AC | 880 ms
59,132 KB |
testcase_09 | AC | 499 ms
48,936 KB |
testcase_10 | AC | 1,037 ms
64,720 KB |
testcase_11 | AC | 982 ms
63,744 KB |
testcase_12 | AC | 1,073 ms
63,832 KB |
testcase_13 | AC | 88 ms
37,824 KB |
testcase_14 | AC | 91 ms
37,568 KB |
testcase_15 | AC | 88 ms
37,628 KB |
ソースコード
import java.util.Scanner; import java.util.TreeMap; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); int[] a = new int[n]; int[] b = new int[n]; for (int i = 0; i < n; i++) { a[i] = sc.nextInt(); b[i] = sc.nextInt(); } sc.close(); TreeMap<Integer, Integer> map = new TreeMap<Integer, Integer>(); for (int i = 0; i < n; i++) { if (map.containsKey(a[i])) { map.put(a[i], map.get(a[i]) + 1); } else { map.put(a[i], 1); } if (map.containsKey(b[i] + 1)) { map.put(b[i] + 1, map.get(b[i] + 1) - 1); } else { map.put(b[i] + 1, -1); } } int prev = 0; for (int key : map.keySet()) { prev = map.get(key) + prev; map.put(key, prev); } int prevK = map.firstKey(); long prevV = map.get(prevK); map.pollFirstEntry(); long cnt = 0; for (int key : map.keySet()) { if (cnt + prevV * (key - prevK) >= k) { long x = (k - 1 - cnt) / prevV + prevK; System.out.println(x); break; } else { cnt += prevV * (key - prevK); prevK = key; prevV = map.get(prevK); } } } }