結果
問題 | No.2851 Make Pairs |
ユーザー | れあ |
提出日時 | 2024-08-25 17:24:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 262 bytes |
コンパイル時間 | 514 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 35,700 KB |
最終ジャッジ日時 | 2024-08-25 17:24:48 |
合計ジャッジ時間 | 4,223 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,824 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
ソースコード
n = int(input()) A = list(map(int,input().split())) ans = 0 act = 0 i = 0 j = 0 while i < len(A): act = A[i] j = i + 1 while j < len(A): if A[j] == act: ans += 1 A.pop(j) A.pop(i) break j += 1 else: i += 1 print(ans)