結果

問題 No.648  お や す み 
ユーザー takayuki-ochiaitakayuki-ochiai
提出日時 2020-02-21 00:47:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,824 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 10,671 ms
コンパイル使用メモリ 432,196 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-10-08 19:31:49
合計ジャッジ時間 68,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
54,320 KB
testcase_01 AC 276 ms
54,148 KB
testcase_02 AC 266 ms
54,140 KB
testcase_03 AC 267 ms
54,332 KB
testcase_04 AC 278 ms
54,364 KB
testcase_05 AC 274 ms
54,156 KB
testcase_06 AC 273 ms
54,256 KB
testcase_07 AC 276 ms
54,164 KB
testcase_08 AC 278 ms
54,240 KB
testcase_09 AC 269 ms
54,160 KB
testcase_10 AC 267 ms
54,320 KB
testcase_11 AC 274 ms
54,324 KB
testcase_12 AC 275 ms
54,248 KB
testcase_13 AC 270 ms
54,320 KB
testcase_14 AC 271 ms
54,148 KB
testcase_15 AC 275 ms
54,264 KB
testcase_16 AC 267 ms
54,284 KB
testcase_17 AC 275 ms
54,176 KB
testcase_18 AC 278 ms
54,172 KB
testcase_19 AC 274 ms
54,296 KB
testcase_20 AC 267 ms
54,360 KB
testcase_21 AC 274 ms
54,168 KB
testcase_22 AC 276 ms
54,296 KB
testcase_23 AC 277 ms
54,156 KB
testcase_24 AC 274 ms
54,332 KB
testcase_25 AC 276 ms
54,384 KB
testcase_26 AC 271 ms
54,244 KB
testcase_27 AC 275 ms
54,280 KB
testcase_28 AC 278 ms
54,280 KB
testcase_29 AC 276 ms
54,296 KB
testcase_30 AC 276 ms
54,168 KB
testcase_31 AC 273 ms
54,224 KB
testcase_32 AC 277 ms
54,316 KB
testcase_33 AC 279 ms
54,264 KB
testcase_34 AC 279 ms
54,272 KB
testcase_35 AC 280 ms
54,104 KB
testcase_36 AC 274 ms
54,300 KB
testcase_37 AC 280 ms
54,248 KB
testcase_38 AC 283 ms
54,276 KB
testcase_39 AC 294 ms
54,368 KB
testcase_40 AC 275 ms
54,176 KB
testcase_41 AC 279 ms
54,052 KB
testcase_42 AC 280 ms
54,168 KB
testcase_43 AC 275 ms
54,264 KB
testcase_44 AC 273 ms
54,152 KB
testcase_45 AC 276 ms
54,132 KB
testcase_46 AC 271 ms
54,192 KB
testcase_47 AC 277 ms
54,104 KB
testcase_48 AC 278 ms
54,220 KB
testcase_49 AC 279 ms
54,164 KB
testcase_50 AC 285 ms
54,336 KB
testcase_51 AC 282 ms
54,148 KB
testcase_52 AC 286 ms
54,168 KB
testcase_53 AC 284 ms
54,272 KB
testcase_54 AC 284 ms
54,372 KB
testcase_55 AC 283 ms
54,280 KB
testcase_56 AC 284 ms
54,304 KB
testcase_57 AC 284 ms
54,316 KB
testcase_58 AC 287 ms
54,276 KB
testcase_59 AC 278 ms
54,348 KB
testcase_60 AC 1,771 ms
54,260 KB
testcase_61 AC 1,775 ms
54,156 KB
testcase_62 AC 1,774 ms
54,284 KB
testcase_63 AC 1,773 ms
54,304 KB
testcase_64 AC 1,773 ms
54,132 KB
testcase_65 AC 1,766 ms
54,168 KB
testcase_66 AC 1,773 ms
54,288 KB
testcase_67 AC 1,770 ms
54,336 KB
testcase_68 AC 1,769 ms
54,264 KB
testcase_69 AC 1,770 ms
54,280 KB
testcase_70 AC 1,331 ms
54,324 KB
testcase_71 AC 1,337 ms
54,312 KB
testcase_72 AC 1,706 ms
54,352 KB
testcase_73 AC 1,701 ms
54,188 KB
testcase_74 AC 1,696 ms
54,296 KB
testcase_75 AC 1,703 ms
54,284 KB
testcase_76 AC 1,773 ms
54,356 KB
testcase_77 AC 1,782 ms
54,184 KB
testcase_78 AC 1,772 ms
54,288 KB
testcase_79 AC 1,824 ms
54,208 KB
testcase_80 AC 1,760 ms
54,184 KB
testcase_81 AC 1,776 ms
54,288 KB
testcase_82 AC 275 ms
54,328 KB
testcase_83 AC 274 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val sheepNumber = readLine()?.toLong()

    var second = 1
    sheepNumber?.let {
        var restSheepNumber = it
        while (restSheepNumber > 0) {
            restSheepNumber -= second

            second++
        }

        if (restSheepNumber.toInt() == 0) {
            println("YES")
            println(second - 1)
        } else {
            println("NO")
        }
    }
}
0