結果
問題 | No.817 Coin donation |
ユーザー | tenten |
提出日時 | 2020-12-04 12:57:32 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,297 bytes |
コンパイル時間 | 4,717 ms |
コンパイル使用メモリ | 78,924 KB |
実行使用メモリ | 86,568 KB |
最終ジャッジ日時 | 2024-09-14 22:54:00 |
合計ジャッジ時間 | 13,319 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
53,820 KB |
testcase_01 | AC | 135 ms
53,952 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 278 ms
57,808 KB |
testcase_06 | AC | 534 ms
59,384 KB |
testcase_07 | AC | 595 ms
61,384 KB |
testcase_08 | AC | 1,400 ms
77,048 KB |
testcase_09 | AC | 627 ms
61,352 KB |
testcase_10 | AC | 1,607 ms
86,568 KB |
testcase_11 | AC | 1,540 ms
83,508 KB |
testcase_12 | AC | 1,610 ms
83,212 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 131 ms
53,944 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); long k = sc.nextLong(); TreeMap<Integer, Integer> map = new TreeMap<>(); int[] aArr = new int[n]; int[] bArr = new int[n]; for (int i = 0; i < n; i++) { aArr[i] = sc.nextInt(); bArr[i] = sc.nextInt() + 1; map.put(aArr[i], 0); map.put(bArr[i], 0); } int idx = 0; for (int x : map.keySet()) { map.put(x, idx); idx++; } int[] imos = new int[idx]; for (int i = 0; i < n; i++) { imos[map.get(aArr[i])]++; imos[map.get(bArr[i])]--; } for (int i = 1; i < idx; i++) { imos[i] += imos[i - 1]; } for (int x : map.keySet()) { if (map.get(x) == idx - 1) { break; } int next = map.higherKey(x); int count = imos[map.get(x)]; long size = next - x; if (k > size * count) { k -= size * count; } else { System.out.println(x + k / count); return; } } } }