結果

問題 No.1679 マスゲーム
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-09-10 21:15:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 100,592 KB
最終ジャッジ日時 2024-06-23 02:00:09
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 43 ms
53,376 KB
testcase_03 AC 244 ms
99,952 KB
testcase_04 AC 243 ms
100,160 KB
testcase_05 AC 238 ms
100,296 KB
testcase_06 AC 236 ms
100,592 KB
testcase_07 AC 238 ms
100,492 KB
testcase_08 AC 240 ms
99,864 KB
testcase_09 AC 237 ms
99,792 KB
testcase_10 AC 238 ms
99,604 KB
testcase_11 AC 241 ms
99,604 KB
testcase_12 AC 87 ms
78,464 KB
testcase_13 AC 141 ms
86,028 KB
testcase_14 AC 249 ms
100,180 KB
testcase_15 AC 211 ms
95,820 KB
testcase_16 AC 197 ms
93,600 KB
testcase_17 AC 42 ms
53,504 KB
testcase_18 AC 183 ms
80,512 KB
testcase_19 AC 51 ms
56,192 KB
testcase_20 AC 48 ms
55,040 KB
testcase_21 AC 61 ms
63,104 KB
testcase_22 AC 55 ms
57,472 KB
testcase_23 AC 44 ms
54,016 KB
testcase_24 AC 49 ms
55,680 KB
testcase_25 AC 54 ms
56,832 KB
testcase_26 AC 49 ms
55,552 KB
testcase_27 AC 52 ms
56,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())

red_d = defaultdict(int) # 赤い点の B_i - T_i を記録する
blue_l = [] # 青い点の B_j - T_j を保存する

for _ in range(n):
    a, b, t = map(int, input().split())
    if a == 0:
        red_d[b - t] += 1
    else:
        blue_l.append(b - t)
    
ans = 0 # 答え

for i in blue_l: # 青い点すべてについて、B_j - T_j = B_i = T_i なる i の数を数えて足す
    ans += red_d[i]
    
print(ans)
0