結果
問題 | No.29 パワーアップ |
ユーザー |
|
提出日時 | 2018-02-04 22:17:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 337 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-30 04:04:42 |
合計ジャッジ時間 | 1,656 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
# coding: utf-8 n = int(input()) table = {} count = 0 for i in range(n): l = list(map(int,input().split(" "))) for j in l: if j not in table: table[j] = 1 else: table[j] += 1 if table[j] == 2: count += 1 table[j] = 0 print(count + sum(table.values()) // 4)