結果
問題 | No.3016 unordered_mapなるたけ落とすマン |
ユーザー | yuppe19 😺 |
提出日時 | 2016-05-28 20:00:48 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,690 bytes |
コンパイル時間 | 2,835 ms |
コンパイル使用メモリ | 79,100 KB |
実行使用メモリ | 48,764 KB |
最終ジャッジ日時 | 2024-10-07 17:32:51 |
合計ジャッジ時間 | 20,861 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
37,000 KB |
testcase_01 | AC | 49 ms
36,680 KB |
testcase_02 | AC | 47 ms
36,592 KB |
testcase_03 | MLE | - |
testcase_04 | AC | 348 ms
47,784 KB |
testcase_05 | AC | 308 ms
47,968 KB |
testcase_06 | AC | 337 ms
47,840 KB |
testcase_07 | AC | 355 ms
47,816 KB |
testcase_08 | MLE | - |
testcase_09 | AC | 342 ms
47,788 KB |
testcase_10 | AC | 343 ms
47,772 KB |
testcase_11 | AC | 333 ms
47,956 KB |
testcase_12 | AC | 341 ms
47,804 KB |
testcase_13 | AC | 335 ms
47,788 KB |
testcase_14 | AC | 325 ms
47,936 KB |
testcase_15 | AC | 357 ms
47,960 KB |
testcase_16 | AC | 316 ms
47,788 KB |
testcase_17 | AC | 313 ms
47,828 KB |
testcase_18 | MLE | - |
testcase_19 | AC | 336 ms
47,952 KB |
testcase_20 | AC | 311 ms
47,960 KB |
testcase_21 | AC | 310 ms
47,848 KB |
testcase_22 | AC | 320 ms
47,984 KB |
testcase_23 | AC | 330 ms
47,928 KB |
testcase_24 | AC | 327 ms
47,908 KB |
testcase_25 | AC | 331 ms
47,792 KB |
testcase_26 | AC | 322 ms
47,976 KB |
testcase_27 | AC | 337 ms
47,672 KB |
testcase_28 | MLE | - |
testcase_29 | AC | 647 ms
47,896 KB |
testcase_30 | AC | 502 ms
47,836 KB |
testcase_31 | AC | 322 ms
47,876 KB |
testcase_32 | MLE | - |
testcase_33 | AC | 341 ms
47,728 KB |
testcase_34 | AC | 323 ms
47,596 KB |
testcase_35 | AC | 320 ms
47,908 KB |
testcase_36 | MLE | - |
testcase_37 | AC | 343 ms
47,956 KB |
testcase_38 | AC | 315 ms
47,912 KB |
testcase_39 | AC | 338 ms
47,828 KB |
testcase_40 | MLE | - |
testcase_41 | AC | 51 ms
37,156 KB |
testcase_42 | AC | 51 ms
36,988 KB |
testcase_43 | AC | 51 ms
37,060 KB |
testcase_44 | AC | 130 ms
39,932 KB |
testcase_45 | AC | 125 ms
40,004 KB |
testcase_46 | AC | 137 ms
39,952 KB |
testcase_47 | AC | 352 ms
47,200 KB |
testcase_48 | MLE | - |
testcase_49 | AC | 400 ms
47,436 KB |
testcase_50 | MLE | - |
ソースコード
import java.io.*; import java.util.*; import static java.util.Arrays.*; class FastScanner { // {{{ private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if(ptr < buflen) { return true; } ptr = 0; try { buflen = in.read(buffer); } catch(IOException ex) { ex.printStackTrace(); } if(buflen <= 0) { return false; } return true; } private int readByte() { if(hasNextByte()) { return buffer[ptr++]; } return -1; } private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126; } private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) { ptr++; } } public boolean hasNext() { skipUnprintable(); return hasNextByte(); } public String next() { if(!hasNext()) { throw new NoSuchElementException(); } StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if(!hasNext()) { throw new NoSuchElementException(); } long n = 0; boolean minus = false; int b = readByte(); if(b == '-') { minus = true; b = readByte(); } if(b < '0' || '9' < b) { throw new NumberFormatException(); } while(true) { if('0' <= b && b <= '9') { n *= 10; n += b - '0'; } else if(b == -1 || !isPrintableChar(b)) { return minus ? -n : n; } else { throw new NumberFormatException(); } b = readByte(); } } } // }}} class LowerBound<T extends Comparable<? super T>> implements Comparator<T> { public int compare(T x, T y) { return x.compareTo(y) >= 0 ? 1 : -1; } } class UpperBound<T extends Comparable<? super T>> implements Comparator<T> { public int compare(T x, T y) { return x.compareTo(y) > 0 ? 1 : -1; } } public class Main { private void solve() { FastScanner sc = new FastScanner(); int n = (int)sc.nextLong(), m = (int)sc.nextLong(); Long[] a = new Long[n]; for(int i=0; i<n; ++i) { a[i] = sc.nextLong(); } sort(a); Comparator<Long> upperBound = new UpperBound<>(), lowerBound = new LowerBound<>(); PrintWriter out = new PrintWriter(System.out); for(int i=0; i<m; ++i) { if(i > 0) { out.print(' '); } long bi = sc.nextLong(); int p = ~binarySearch(a, bi, upperBound) - ~binarySearch(a, bi, lowerBound); out.print(p); } out.println(); out.flush(); } public static void main(String[] args) { new Main().solve(); } }