結果

問題 No.1205 Eye Drops
コンテスト
ユーザー face4
提出日時 2021-04-11 13:09:00
言語 Kotlin
(2.3.10)
コンパイル:
kotlinc _filename_ -include-runtime -d main.jar
実行:
kotlin main.jar
結果
WA  
実行時間 -
コード長 341 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 9,318 ms
コンパイル使用メモリ 451,460 KB
実行使用メモリ 53,028 KB
最終ジャッジ日時 2026-03-14 21:26:03
合計ジャッジ時間 19,404 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other AC * 30 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

fun main() {
    val (n, m) = readLine()!!.split(" ").map{it.toInt()}
    var now: Long = 0
    var pos: Long = 0
    repeat(m){
        val (t, p) = readLine()!!.split(" ").map{it.toLong()}
        if(t-now > Math.abs(pos-p)){
            println("No")
            return
        }
        now = t
        pos = p
    }
    println("Yes")
}
0