結果

問題 No.1679 マスゲーム
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-09-14 22:09:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 794 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,020 KB
最終ジャッジ日時 2024-06-27 13:42:45
合計ジャッジ時間 13,485 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 794 ms
25,764 KB
testcase_04 AC 779 ms
25,892 KB
testcase_05 AC 789 ms
25,892 KB
testcase_06 AC 786 ms
26,020 KB
testcase_07 AC 774 ms
25,896 KB
testcase_08 AC 786 ms
25,768 KB
testcase_09 AC 768 ms
25,896 KB
testcase_10 AC 765 ms
25,896 KB
testcase_11 AC 783 ms
26,000 KB
testcase_12 AC 96 ms
12,012 KB
testcase_13 AC 327 ms
17,412 KB
testcase_14 AC 775 ms
25,856 KB
testcase_15 AC 676 ms
24,740 KB
testcase_16 AC 585 ms
23,816 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 704 ms
12,224 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 32 ms
10,624 KB
testcase_22 AC 31 ms
10,496 KB
testcase_23 AC 29 ms
10,496 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
red = []
blue = []
for _ in range(N):
    a,b,t = map(int,input().split())
    if a==0:
        red.append(b-t)
    else:
        blue.append(b-t)
from collections import Counter
c = Counter(red)
c_b = Counter(blue)
ans = 0
for key,value in c.items():
    ans += value*c_b[key]
print(ans)
0