結果

問題 No.1205 Eye Drops
ユーザー face4face4
提出日時 2021-04-11 13:10:14
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 11,641 ms
コンパイル使用メモリ 438,236 KB
実行使用メモリ 83,316 KB
最終ジャッジ日時 2024-06-27 08:26:54
合計ジャッジ時間 25,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
51,596 KB
testcase_01 AC 309 ms
51,716 KB
testcase_02 AC 349 ms
52,264 KB
testcase_03 AC 307 ms
51,664 KB
testcase_04 AC 314 ms
51,888 KB
testcase_05 AC 325 ms
51,976 KB
testcase_06 AC 328 ms
52,020 KB
testcase_07 AC 307 ms
51,800 KB
testcase_08 AC 307 ms
51,824 KB
testcase_09 AC 317 ms
51,948 KB
testcase_10 AC 323 ms
51,832 KB
testcase_11 AC 342 ms
52,028 KB
testcase_12 AC 304 ms
51,768 KB
testcase_13 AC 325 ms
51,996 KB
testcase_14 AC 352 ms
52,172 KB
testcase_15 AC 327 ms
52,060 KB
testcase_16 AC 325 ms
51,844 KB
testcase_17 AC 303 ms
51,692 KB
testcase_18 AC 315 ms
51,952 KB
testcase_19 AC 315 ms
51,716 KB
testcase_20 AC 349 ms
52,192 KB
testcase_21 AC 308 ms
51,888 KB
testcase_22 AC 328 ms
52,040 KB
testcase_23 AC 344 ms
52,252 KB
testcase_24 AC 308 ms
51,940 KB
testcase_25 AC 309 ms
51,676 KB
testcase_26 AC 310 ms
51,812 KB
testcase_27 AC 304 ms
51,712 KB
testcase_28 AC 326 ms
52,140 KB
testcase_29 AC 306 ms
51,616 KB
testcase_30 AC 311 ms
51,792 KB
testcase_31 AC 320 ms
51,964 KB
testcase_32 AC 298 ms
51,528 KB
testcase_33 AC 304 ms
51,700 KB
testcase_34 AC 304 ms
52,008 KB
testcase_35 AC 299 ms
51,916 KB
testcase_36 AC 295 ms
51,632 KB
testcase_37 AC 626 ms
83,316 KB
testcase_38 AC 302 ms
56,788 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