結果

問題 No.2462 七人カノン
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-09-08 21:34:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 97,916 KB
最終ジャッジ日時 2024-06-26 14:26:22
合計ジャッジ時間 9,281 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,848 KB
testcase_01 AC 53 ms
64,384 KB
testcase_02 AC 45 ms
62,592 KB
testcase_03 AC 66 ms
70,732 KB
testcase_04 AC 61 ms
68,992 KB
testcase_05 AC 60 ms
69,248 KB
testcase_06 AC 65 ms
69,504 KB
testcase_07 AC 62 ms
69,376 KB
testcase_08 AC 64 ms
68,480 KB
testcase_09 AC 59 ms
68,096 KB
testcase_10 AC 66 ms
70,144 KB
testcase_11 AC 62 ms
69,760 KB
testcase_12 AC 63 ms
69,120 KB
testcase_13 AC 235 ms
95,744 KB
testcase_14 AC 239 ms
96,680 KB
testcase_15 AC 231 ms
95,132 KB
testcase_16 AC 249 ms
97,532 KB
testcase_17 AC 255 ms
97,396 KB
testcase_18 AC 72 ms
83,432 KB
testcase_19 AC 78 ms
83,360 KB
testcase_20 AC 285 ms
97,300 KB
testcase_21 AC 268 ms
97,552 KB
testcase_22 AC 266 ms
97,560 KB
testcase_23 AC 272 ms
97,560 KB
testcase_24 AC 212 ms
91,616 KB
testcase_25 AC 282 ms
97,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
ans=[0 for i in range(N)]
canon=[]
time=[0 for i in range(200000)]
for i in range(Q):
    I,S,T=map(int,input().split())
    time[S+1]+=1
    time[T+1]-=1
    canon.append((I,S,T))
for i in range(150000):
    time[i+1]+=time[i]
for i in range(150000):
    if time[i]>0:
        time[i]=1/time[i]
for i in range(150000):
    time[i+1]+=time[i]
for i,s,t in canon:
    ans[i-1]+=time[t]-time[s]
print(*ans,sep="\n")
0