結果
問題 | No.182 新規性の虜 |
ユーザー | kenkoooo |
提出日時 | 2015-04-16 23:23:23 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 784 bytes |
コンパイル時間 | 2,131 ms |
コンパイル使用メモリ | 74,020 KB |
実行使用メモリ | 39,132 KB |
最終ジャッジ日時 | 2024-07-04 15:03:20 |
合計ジャッジ時間 | 4,820 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
36,776 KB |
testcase_01 | AC | 50 ms
36,416 KB |
testcase_02 | AC | 49 ms
36,456 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 50 ms
36,456 KB |
testcase_14 | AC | 50 ms
36,700 KB |
testcase_15 | AC | 50 ms
36,752 KB |
testcase_16 | AC | 49 ms
36,512 KB |
testcase_17 | AC | 50 ms
36,444 KB |
testcase_18 | AC | 102 ms
38,696 KB |
testcase_19 | AC | 99 ms
38,616 KB |
testcase_20 | AC | 91 ms
38,308 KB |
testcase_21 | AC | 110 ms
38,956 KB |
testcase_22 | AC | 100 ms
38,212 KB |
testcase_23 | AC | 49 ms
36,376 KB |
testcase_24 | RE | - |
testcase_25 | AC | 102 ms
39,132 KB |
testcase_26 | RE | - |
testcase_27 | AC | 49 ms
36,304 KB |
evil01.txt | RE | - |
evil02.txt | RE | - |
ソースコード
import java.io.IOException; import java.util.Arrays; public class Main { public static void main(String[] args) throws Exception { int N = nextInt(); int[] num = new int[10001]; for (int i = 0; i < N; i++) { num[nextInt()]++; } int ans = 0; for (int i = 0; i < num.length; i++) { if (num[i] == 1) { ans++; } } System.out.println(ans); } static int nextInt() { int c; try { c = System.in.read(); while (c != '-' && (c < '0' || c > '9')) c = System.in.read(); if (c == '-') return -nextInt(); int res = 0; while (c >= '0' && c <= '9') { res = res * 10 + c - '0'; c = System.in.read(); } return res; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return -1; } }