結果
問題 | No.2757 Pin Game |
ユーザー | ImTaboo |
提出日時 | 2024-09-29 14:03:59 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 411 bytes |
コンパイル時間 | 12,451 ms |
コンパイル使用メモリ | 437,272 KB |
実行使用メモリ | 101,568 KB |
最終ジャッジ日時 | 2024-09-29 14:04:18 |
合計ジャッジ時間 | 18,367 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 306 ms
56,984 KB |
testcase_01 | RE | - |
testcase_02 | AC | 297 ms
57,032 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
ソースコード
fun main() { var (n, K) = readln().split(" ").map { it.toInt() } var x = readln().split(" ").map { it.toInt() } var postn = 1 var j = 2 var i = 1 while (j <= n){ if ( (x[j] - x[i]) >= K ) { postn = postn + 1 i = j j = j+1 } if(i==n){postn = postn - 1 } j = j+1 } println (postn) }