結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー バカらっくバカらっく
提出日時 2022-02-03 13:10:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 10,594 ms
コンパイル使用メモリ 431,244 KB
実行使用メモリ 51,188 KB
最終ジャッジ日時 2024-06-11 09:52:20
合計ジャッジ時間 16,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
50,772 KB
testcase_01 AC 252 ms
49,732 KB
testcase_02 AC 266 ms
49,520 KB
testcase_03 AC 257 ms
49,732 KB
testcase_04 AC 273 ms
51,176 KB
testcase_05 AC 279 ms
51,188 KB
testcase_06 AC 265 ms
50,964 KB
testcase_07 AC 275 ms
50,952 KB
testcase_08 AC 270 ms
51,016 KB
testcase_09 AC 244 ms
49,532 KB
testcase_10 AC 250 ms
49,788 KB
testcase_11 AC 264 ms
51,112 KB
testcase_12 AC 261 ms
51,136 KB
testcase_13 AC 243 ms
49,540 KB
testcase_14 AC 261 ms
51,036 KB
testcase_15 AC 248 ms
49,628 KB
testcase_16 AC 262 ms
50,908 KB
testcase_17 AC 256 ms
49,740 KB
testcase_18 AC 261 ms
51,164 KB
testcase_19 AC 264 ms
51,120 KB
testcase_20 AC 256 ms
51,152 KB
testcase_21 AC 257 ms
50,900 KB
testcase_22 AC 248 ms
49,748 KB
testcase_23 AC 257 ms
51,092 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!
    val ans = if(n == "0" || n[0] == '-') {
        "0"
    } else {
        n.dropLast(2).let { if(it.isEmpty()) "0" else it }
    }
    println(ans)
}
0