結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー face4face4
提出日時 2021-04-09 19:25:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 11,835 ms
コンパイル使用メモリ 423,152 KB
実行使用メモリ 51,072 KB
最終ジャッジ日時 2024-06-25 01:53:51
合計ジャッジ時間 18,151 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
50,932 KB
testcase_01 AC 284 ms
49,672 KB
testcase_02 AC 285 ms
49,672 KB
testcase_03 AC 281 ms
49,852 KB
testcase_04 AC 279 ms
49,768 KB
testcase_05 AC 298 ms
50,888 KB
testcase_06 AC 277 ms
49,648 KB
testcase_07 AC 299 ms
50,788 KB
testcase_08 AC 303 ms
50,948 KB
testcase_09 AC 282 ms
49,544 KB
testcase_10 AC 277 ms
49,808 KB
testcase_11 AC 300 ms
50,968 KB
testcase_12 AC 300 ms
50,832 KB
testcase_13 AC 278 ms
49,900 KB
testcase_14 AC 299 ms
50,916 KB
testcase_15 AC 283 ms
49,504 KB
testcase_16 AC 299 ms
50,776 KB
testcase_17 AC 284 ms
49,848 KB
testcase_18 AC 304 ms
50,772 KB
testcase_19 AC 305 ms
50,880 KB
testcase_20 AC 305 ms
51,072 KB
testcase_21 AC 305 ms
50,916 KB
testcase_22 AC 287 ms
49,832 KB
testcase_23 AC 308 ms
50,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

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