結果

問題 No.1679 マスゲーム
ユーザー ryusukeryusuke
提出日時 2022-02-04 20:38:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 121,088 KB
最終ジャッジ日時 2024-06-11 11:22:21
合計ジャッジ時間 5,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 259 ms
120,832 KB
testcase_04 AC 263 ms
120,960 KB
testcase_05 AC 263 ms
120,448 KB
testcase_06 AC 276 ms
120,960 KB
testcase_07 AC 272 ms
120,960 KB
testcase_08 AC 281 ms
120,832 KB
testcase_09 AC 267 ms
120,448 KB
testcase_10 AC 265 ms
121,088 KB
testcase_11 AC 269 ms
121,088 KB
testcase_12 AC 97 ms
78,848 KB
testcase_13 AC 160 ms
94,976 KB
testcase_14 AC 268 ms
120,576 KB
testcase_15 AC 241 ms
114,560 KB
testcase_16 AC 217 ms
110,592 KB
testcase_17 AC 39 ms
53,632 KB
testcase_18 AC 244 ms
97,408 KB
testcase_19 AC 51 ms
61,824 KB
testcase_20 AC 48 ms
60,928 KB
testcase_21 AC 58 ms
64,896 KB
testcase_22 AC 54 ms
63,616 KB
testcase_23 AC 41 ms
53,888 KB
testcase_24 AC 50 ms
61,312 KB
testcase_25 AC 56 ms
63,360 KB
testcase_26 AC 49 ms
60,928 KB
testcase_27 AC 52 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
abt = [list(map(int, input().split())) for _ in range(n)]

d = defaultdict(int)
for i in range(n):
    # 青の時のカウントをする
    if abt[i][0] == 1:
        d[abt[i][2] - abt[i][1]] += 1

ans = 0
for i in range(n):
    # 重なる赤を見つける
    if abt[i][0] == 0:
        ans += d[abt[i][2] - abt[i][1]]

print(ans)
0