結果

問題 No.1679 マスゲーム
ユーザー rlangevinrlangevin
提出日時 2023-01-09 14:48:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 98,460 KB
最終ジャッジ日時 2024-05-09 23:45:05
合計ジャッジ時間 5,930 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 41 ms
54,460 KB
testcase_02 AC 41 ms
53,508 KB
testcase_03 AC 167 ms
98,460 KB
testcase_04 AC 165 ms
98,080 KB
testcase_05 AC 165 ms
97,948 KB
testcase_06 AC 172 ms
97,956 KB
testcase_07 AC 166 ms
98,000 KB
testcase_08 AC 166 ms
97,688 KB
testcase_09 AC 168 ms
98,448 KB
testcase_10 AC 168 ms
97,476 KB
testcase_11 AC 171 ms
98,080 KB
testcase_12 AC 70 ms
77,840 KB
testcase_13 AC 104 ms
85,840 KB
testcase_14 AC 164 ms
98,080 KB
testcase_15 AC 151 ms
95,772 KB
testcase_16 AC 136 ms
93,668 KB
testcase_17 AC 42 ms
54,604 KB
testcase_18 AC 114 ms
79,572 KB
testcase_19 AC 44 ms
54,936 KB
testcase_20 AC 44 ms
55,028 KB
testcase_21 AC 45 ms
57,048 KB
testcase_22 AC 44 ms
55,800 KB
testcase_23 AC 44 ms
54,024 KB
testcase_24 AC 47 ms
54,176 KB
testcase_25 AC 45 ms
55,172 KB
testcase_26 AC 44 ms
54,648 KB
testcase_27 AC 43 ms
55,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from collections import *

N = int(readline())
A = []
D = defaultdict(int)
for i in range(N):
    a, b, t, = map(int,readline().split())
    if a:
        A.append(b - t)
    else:
        D[b - t] += 1
        
ans = 0
for a in A:
    ans += D[a]
print(ans)    
0