結果

問題 No.1205 Eye Drops
ユーザー face4face4
提出日時 2021-04-11 13:09:00
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 11,982 ms
コンパイル使用メモリ 437,752 KB
実行使用メモリ 56,988 KB
最終ジャッジ日時 2024-06-27 08:25:04
合計ジャッジ時間 25,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 317 ms
56,732 KB
testcase_04 AC 321 ms
56,768 KB
testcase_05 AC 315 ms
56,952 KB
testcase_06 AC 313 ms
56,740 KB
testcase_07 AC 317 ms
56,728 KB
testcase_08 AC 315 ms
56,800 KB
testcase_09 AC 319 ms
56,976 KB
testcase_10 AC 317 ms
56,704 KB
testcase_11 WA -
testcase_12 AC 319 ms
56,732 KB
testcase_13 WA -
testcase_14 AC 317 ms
56,732 KB
testcase_15 AC 313 ms
56,840 KB
testcase_16 WA -
testcase_17 AC 314 ms
56,968 KB
testcase_18 WA -
testcase_19 AC 315 ms
56,968 KB
testcase_20 AC 320 ms
56,804 KB
testcase_21 AC 314 ms
56,704 KB
testcase_22 AC 315 ms
56,872 KB
testcase_23 WA -
testcase_24 AC 318 ms
56,888 KB
testcase_25 AC 314 ms
56,808 KB
testcase_26 AC 317 ms
56,856 KB
testcase_27 AC 328 ms
56,752 KB
testcase_28 AC 323 ms
56,688 KB
testcase_29 AC 317 ms
56,784 KB
testcase_30 AC 314 ms
56,924 KB
testcase_31 AC 316 ms
56,724 KB
testcase_32 AC 317 ms
56,756 KB
testcase_33 AC 316 ms
56,724 KB
testcase_34 AC 312 ms
56,784 KB
testcase_35 AC 317 ms
56,752 KB
testcase_36 AC 320 ms
56,988 KB
testcase_37 WA -
testcase_38 AC 318 ms
56,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: variable 'n' is never used
    val (n, m) = readLine()!!.split(" ").map{it.toInt()}
         ^

ソースコード

diff #

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