結果

問題 No.1642 Registration
ユーザー DieGoDieGo
提出日時 2021-08-25 22:16:03
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 8,796 ms
コンパイル使用メモリ 424,460 KB
実行使用メモリ 50,240 KB
最終ジャッジ日時 2024-04-28 13:42:52
合計ジャッジ時間 11,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
49,948 KB
testcase_01 AC 242 ms
49,796 KB
testcase_02 AC 256 ms
50,240 KB
testcase_03 AC 247 ms
49,996 KB
testcase_04 AC 258 ms
50,136 KB
testcase_05 AC 251 ms
49,888 KB
testcase_06 AC 253 ms
49,716 KB
testcase_07 AC 260 ms
50,152 KB
testcase_08 AC 250 ms
49,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()

    if ( n >= 100 ) {
        println(n)
    } else if ( n >= 10 ) {
        println(String.format("0%s", n))
    } else {
        println(String.format("00%s", n))
    }
}
0