結果

問題 No.1679 マスゲーム
ユーザー tnodinotnodino
提出日時 2022-02-04 20:19:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 144,696 KB
最終ジャッジ日時 2024-06-11 11:22:11
合計ジャッジ時間 6,269 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 39 ms
53,376 KB
testcase_03 AC 308 ms
143,248 KB
testcase_04 AC 310 ms
143,388 KB
testcase_05 AC 311 ms
143,368 KB
testcase_06 AC 298 ms
143,376 KB
testcase_07 AC 298 ms
143,372 KB
testcase_08 AC 302 ms
143,252 KB
testcase_09 AC 331 ms
143,440 KB
testcase_10 AC 328 ms
143,256 KB
testcase_11 AC 324 ms
143,324 KB
testcase_12 AC 102 ms
81,280 KB
testcase_13 AC 173 ms
104,064 KB
testcase_14 AC 322 ms
144,696 KB
testcase_15 AC 274 ms
125,440 KB
testcase_16 AC 263 ms
126,316 KB
testcase_17 AC 46 ms
53,376 KB
testcase_18 AC 274 ms
119,168 KB
testcase_19 AC 60 ms
61,952 KB
testcase_20 AC 55 ms
61,056 KB
testcase_21 AC 58 ms
65,280 KB
testcase_22 AC 55 ms
63,744 KB
testcase_23 AC 45 ms
54,016 KB
testcase_24 AC 54 ms
61,440 KB
testcase_25 AC 62 ms
63,360 KB
testcase_26 AC 49 ms
61,312 KB
testcase_27 AC 50 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
L = [list(map(int,input().split())) for _ in range(N)]
A,B,T = [list(i) for i in zip(*L)]
dic = defaultdict(int)
for i in range(N):
    if A[i] == 0:
        dic[B[i]-T[i]] += 1
ans = 0
for i in range(N):
    if A[i] == 1:
        ans += dic[B[i]-T[i]]
print(ans)
0