結果
問題 |
No.723 2つの数の和
|
ユーザー |
|
提出日時 | 2018-10-17 21:33:25 |
言語 | Java (openjdk 23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,263 bytes |
コンパイル時間 | 2,358 ms |
コンパイル使用メモリ | 78,928 KB |
実行使用メモリ | 70,612 KB |
最終ジャッジ日時 | 2024-10-12 18:55:22 |
合計ジャッジ時間 | 6,484 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | TLE * 1 -- * 21 |
ソースコード
package yukicoder.wa; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Scanner; import java.util.Set; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int x = sc.nextInt(); sc.nextLine(); int count = 0; String[] a = sc.nextLine().split(" "); // System.out.println(Arrays.toString(a)); int[] num = new int[n]; Set<Integer> num_ = new HashSet<>(); Map<Integer, Integer> countForNum = new HashMap<>(); for (int i = 0; i < n; i++) { int j = Integer.parseInt(a[i]); num_.add(j); if (countForNum.get(j) != null) { countForNum.put(j, countForNum.get(j) + 1); } else { countForNum.put(j, 1); } } long start = System.currentTimeMillis(); for (Integer i : num_) { if (i > x) { // System.out.println("con"); continue; } for (Integer j : num_) { if (j > x) { // System.out.println("\tcon"); continue; } if (i + j == x) { count += countForNum.get(i) * countForNum.get(j); } } } long end = System.currentTimeMillis(); // System.out.println(end - start); System.out.println(count); } }