結果
問題 |
No.723 2つの数の和
|
ユーザー |
|
提出日時 | 2019-01-16 16:23:35 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 465 bytes |
コンパイル時間 | 2,082 ms |
コンパイル使用メモリ | 74,700 KB |
実行使用メモリ | 63,332 KB |
最終ジャッジ日時 | 2024-06-28 09:17:31 |
合計ジャッジ時間 | 14,143 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 WA * 2 |
ソースコード
import java.util.Scanner; class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int x = sc.nextInt(); int a[] = new int[n]; int t[] = new int[1000000]; int ans = 0; for (int i = 0; i < n; i++) { a[i] = sc.nextInt(); t[a[i]]++; } for (int i = 0; i < n; i++) { if (x - a[i] >= 0 && x - a[i] <= 1000000) ans += t[x - a[i]]; } System.out.println(ans); } }