結果

問題 No.1679 マスゲーム
ユーザー flippergoflippergo
提出日時 2024-11-05 19:19:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 94,316 KB
最終ジャッジ日時 2024-11-05 19:20:00
合計ジャッジ時間 7,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,664 KB
testcase_01 AC 37 ms
52,932 KB
testcase_02 AC 37 ms
53,468 KB
testcase_03 AC 271 ms
94,308 KB
testcase_04 AC 299 ms
94,060 KB
testcase_05 AC 272 ms
94,180 KB
testcase_06 AC 278 ms
94,188 KB
testcase_07 AC 274 ms
93,924 KB
testcase_08 AC 305 ms
93,932 KB
testcase_09 AC 269 ms
94,044 KB
testcase_10 AC 270 ms
94,312 KB
testcase_11 AC 282 ms
94,056 KB
testcase_12 AC 86 ms
77,612 KB
testcase_13 AC 148 ms
82,976 KB
testcase_14 AC 275 ms
94,316 KB
testcase_15 AC 236 ms
92,012 KB
testcase_16 AC 214 ms
89,908 KB
testcase_17 AC 37 ms
53,072 KB
testcase_18 AC 167 ms
76,420 KB
testcase_19 AC 44 ms
54,792 KB
testcase_20 AC 43 ms
54,800 KB
testcase_21 AC 51 ms
61,916 KB
testcase_22 AC 46 ms
55,824 KB
testcase_23 AC 40 ms
53,752 KB
testcase_24 AC 42 ms
55,196 KB
testcase_25 AC 46 ms
55,936 KB
testcase_26 AC 43 ms
54,956 KB
testcase_27 AC 46 ms
55,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = {}
D = {}
for _ in range(N):
    a,b,t = map(int,input().split())
    if a==0:
        C[t-b] = C.get(t-b,0)+1
    else:
        D[t-b] = D.get(t-b,0)+1
ans = 0
for x in C:
    ans += C[x]*D.get(x,0)
print(ans)
0