結果

問題 No.1390 Get together
ユーザー raven7959raven7959
提出日時 2021-08-29 10:13:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,584 KB
最終ジャッジ日時 2024-05-01 21:17:37
合計ジャッジ時間 10,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
51,840 KB
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 43 ms
51,712 KB
testcase_16 AC 231 ms
96,380 KB
testcase_17 AC 356 ms
112,512 KB
testcase_18 AC 228 ms
102,116 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 382 ms
114,784 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 381 ms
112,216 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
box=[set() for _ in range(N)] #色ごとに箱を格納
for _ in range(M):
  b,c=map(int,input().split())
  box[c-1].add(b)
ans=0
for i in range(N):
  ans+=max(0,len(box[i])-1)
print(ans)
0