結果

問題 No.1679 マスゲーム
ユーザー 👑 rin204rin204
提出日時 2021-09-24 17:28:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 103,204 KB
最終ジャッジ日時 2024-07-05 09:45:26
合計ジャッジ時間 6,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,428 KB
testcase_01 AC 41 ms
53,568 KB
testcase_02 AC 45 ms
54,560 KB
testcase_03 AC 280 ms
103,028 KB
testcase_04 AC 270 ms
103,076 KB
testcase_05 AC 265 ms
102,764 KB
testcase_06 AC 262 ms
102,892 KB
testcase_07 AC 266 ms
102,764 KB
testcase_08 AC 267 ms
103,204 KB
testcase_09 AC 258 ms
102,576 KB
testcase_10 AC 250 ms
102,836 KB
testcase_11 AC 268 ms
102,560 KB
testcase_12 AC 88 ms
78,512 KB
testcase_13 AC 144 ms
86,916 KB
testcase_14 AC 260 ms
102,736 KB
testcase_15 AC 231 ms
101,556 KB
testcase_16 AC 208 ms
97,792 KB
testcase_17 AC 41 ms
54,416 KB
testcase_18 AC 161 ms
76,516 KB
testcase_19 AC 45 ms
56,628 KB
testcase_20 AC 43 ms
55,676 KB
testcase_21 AC 55 ms
64,148 KB
testcase_22 AC 50 ms
58,292 KB
testcase_23 AC 41 ms
54,116 KB
testcase_24 AC 44 ms
56,128 KB
testcase_25 AC 47 ms
58,048 KB
testcase_26 AC 45 ms
56,356 KB
testcase_27 AC 46 ms
57,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd

n = int(input())
X = dd(int)
Y = dd(int)
for _ in range(n):
    a, b, t = map(int, input().split())
    if a == 0:
        X[b - t] += 1
    else:
        Y[b - t] += 1
ans = 0
for k, v in X.items():
    ans += v * Y[k]
print(ans)
0