結果

問題 No.1679 マスゲーム
ユーザー vwxyzvwxyz
提出日時 2024-07-17 11:32:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 804 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,616 KB
最終ジャッジ日時 2024-07-17 11:33:10
合計ジャッジ時間 13,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 798 ms
22,560 KB
testcase_04 AC 800 ms
22,332 KB
testcase_05 AC 775 ms
22,516 KB
testcase_06 AC 804 ms
22,396 KB
testcase_07 AC 788 ms
22,460 KB
testcase_08 AC 790 ms
22,552 KB
testcase_09 AC 778 ms
22,616 KB
testcase_10 AC 797 ms
22,568 KB
testcase_11 AC 774 ms
22,556 KB
testcase_12 AC 95 ms
11,904 KB
testcase_13 AC 327 ms
15,920 KB
testcase_14 AC 799 ms
22,512 KB
testcase_15 AC 663 ms
21,496 KB
testcase_16 AC 560 ms
20,360 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 740 ms
12,416 KB
testcase_19 AC 32 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 32 ms
10,880 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N=int(input())
B=[[],[]]
for i in range(N):
    a,b,t=map(int,input().split())
    b-=t
    B[a].append(b)
cnt=Counter(B[0])
ans=sum(cnt[b] for b in B[1])
print(ans)
0