結果

問題 No.1390 Get together
ユーザー nobunobu
提出日時 2021-03-27 00:11:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 229 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 59,416 KB
最終ジャッジ日時 2024-05-06 18:11:45
合計ジャッジ時間 16,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 44 ms
11,520 KB
testcase_04 AC 44 ms
11,392 KB
testcase_05 WA -
testcase_06 AC 41 ms
11,648 KB
testcase_07 WA -
testcase_08 AC 40 ms
11,264 KB
testcase_09 AC 46 ms
11,776 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 28 ms
10,624 KB
testcase_13 WA -
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 780 ms
51,584 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 828 ms
59,176 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,M=map(int,input().split())
b=[ list(map(int,input().split())) for i in range(N) ]
c=[]
count=0
for i in b:
    c.append(i[1])

w=collections.Counter(c)

for i in w.values():
    count += i-1

print(count)



0