結果
| 問題 |
No.2757 Pin Game
|
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2024-05-17 21:58:29 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 208 ms / 2,000 ms |
| コード長 | 200 bytes |
| コンパイル時間 | 627 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 44,328 KB |
| 最終ジャッジ日時 | 2024-12-20 13:44:25 |
| 合計ジャッジ時間 | 2,266 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
import sys
input = sys.stdin.readline
N,K=map(int,input().split())
X=list(map(int,input().split()))
mae=-1<<63
ANS=0
for x in X:
if x>=mae+K:
mae=x
else:
ANS+=1
print(N-ANS)
titia