結果
問題 | No.723 2つの数の和 |
ユーザー | Theta |
提出日時 | 2022-10-18 14:49:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 513 bytes |
コンパイル時間 | 374 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 25,680 KB |
最終ジャッジ日時 | 2024-06-28 22:57:00 |
合計ジャッジ時間 | 3,170 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,752 KB |
testcase_01 | AC | 25 ms
10,752 KB |
testcase_02 | AC | 24 ms
10,624 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 139 ms
24,612 KB |
testcase_14 | AC | 55 ms
14,936 KB |
testcase_15 | AC | 75 ms
18,344 KB |
testcase_16 | AC | 100 ms
23,724 KB |
testcase_17 | AC | 120 ms
24,972 KB |
testcase_18 | AC | 53 ms
12,508 KB |
testcase_19 | AC | 70 ms
20,868 KB |
testcase_20 | AC | 26 ms
10,752 KB |
testcase_21 | AC | 25 ms
10,752 KB |
testcase_22 | AC | 26 ms
10,752 KB |
testcase_23 | AC | 96 ms
25,348 KB |
testcase_24 | WA | - |
ソースコード
from collections import defaultdict def main(): N, X = map(int, input().split()) A = list(map(int, input().split())) A.sort() counter_A = defaultdict(int) for num in A: counter_A[num] += 1 patterns = 0 for num in A: if num > X - num: break if num == X - num: patterns += counter_A[num] ** 2 break patterns += counter_A[num] * counter_A[X - num] * 2 print(patterns) if __name__ == "__main__": main()