結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー face4face4
提出日時 2021-04-09 19:26:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 10,561 ms
コンパイル使用メモリ 431,120 KB
実行使用メモリ 56,824 KB
最終ジャッジ日時 2024-06-25 01:54:44
合計ジャッジ時間 18,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
56,780 KB
testcase_01 AC 289 ms
54,028 KB
testcase_02 AC 288 ms
54,252 KB
testcase_03 AC 284 ms
54,280 KB
testcase_04 AC 288 ms
54,076 KB
testcase_05 AC 304 ms
56,748 KB
testcase_06 AC 287 ms
54,272 KB
testcase_07 AC 305 ms
56,808 KB
testcase_08 AC 308 ms
56,580 KB
testcase_09 AC 287 ms
54,176 KB
testcase_10 AC 289 ms
54,076 KB
testcase_11 AC 304 ms
56,552 KB
testcase_12 AC 304 ms
56,684 KB
testcase_13 AC 286 ms
54,228 KB
testcase_14 AC 304 ms
56,816 KB
testcase_15 AC 288 ms
54,264 KB
testcase_16 AC 305 ms
56,624 KB
testcase_17 AC 288 ms
54,240 KB
testcase_18 AC 308 ms
56,556 KB
testcase_19 AC 310 ms
56,816 KB
testcase_20 AC 305 ms
56,824 KB
testcase_21 AC 312 ms
56,660 KB
testcase_22 AC 288 ms
54,044 KB
testcase_23 AC 306 ms
56,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    println(readLine()!!.let{
        if(it[0]=='-' || it.length < 3) 0
        else it.substring(0..it.length-3)
    })
}
0