結果

問題 No.1679 マスゲーム
ユーザー syunsuke1024syunsuke1024
提出日時 2021-09-19 15:51:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 94,308 KB
最終ジャッジ日時 2024-07-01 19:12:06
合計ジャッジ時間 6,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 281 ms
94,180 KB
testcase_04 AC 286 ms
93,920 KB
testcase_05 AC 282 ms
94,048 KB
testcase_06 AC 280 ms
93,800 KB
testcase_07 AC 280 ms
93,936 KB
testcase_08 AC 279 ms
94,308 KB
testcase_09 AC 279 ms
94,048 KB
testcase_10 AC 281 ms
94,056 KB
testcase_11 AC 280 ms
94,048 KB
testcase_12 AC 88 ms
77,388 KB
testcase_13 AC 150 ms
83,456 KB
testcase_14 AC 281 ms
94,052 KB
testcase_15 AC 245 ms
92,136 KB
testcase_16 AC 218 ms
89,704 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 169 ms
76,416 KB
testcase_19 AC 46 ms
54,400 KB
testcase_20 AC 43 ms
53,888 KB
testcase_21 AC 54 ms
61,312 KB
testcase_22 AC 49 ms
55,552 KB
testcase_23 AC 40 ms
52,352 KB
testcase_24 AC 44 ms
54,016 KB
testcase_25 AC 48 ms
55,296 KB
testcase_26 AC 44 ms
54,016 KB
testcase_27 AC 47 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

R = {}
B = {}

for i in range(N):
    c,a,b = map(int,input().split())
    if c:
        if a-b not in R:
            R[a-b] = 0
        R[a-b] += 1
    else:
        if a-b not in B:
            B[a-b] = 0
        B[a-b] += 1

ans = 0
for k,v in R.items():
    if k in B:
        ans += R[k] * B[k]
print(ans)
0