結果

問題 No.552 十分簡単な星1の問題
ユーザー Pump0129Pump0129
提出日時 2018-04-10 19:27:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 10,884 ms
コンパイル使用メモリ 420,860 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-11-20 15:50:11
合計ジャッジ時間 25,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
54,152 KB
testcase_01 AC 292 ms
54,228 KB
testcase_02 AC 289 ms
54,224 KB
testcase_03 AC 289 ms
54,460 KB
testcase_04 AC 286 ms
54,308 KB
testcase_05 AC 287 ms
54,308 KB
testcase_06 AC 295 ms
54,340 KB
testcase_07 AC 288 ms
54,364 KB
testcase_08 AC 292 ms
54,496 KB
testcase_09 AC 288 ms
54,380 KB
testcase_10 AC 292 ms
54,324 KB
testcase_11 AC 290 ms
54,252 KB
testcase_12 AC 292 ms
54,248 KB
testcase_13 AC 291 ms
54,324 KB
testcase_14 AC 291 ms
54,240 KB
testcase_15 AC 287 ms
54,308 KB
testcase_16 AC 291 ms
54,212 KB
testcase_17 AC 293 ms
54,224 KB
testcase_18 AC 291 ms
54,352 KB
testcase_19 AC 292 ms
54,324 KB
testcase_20 AC 293 ms
54,328 KB
testcase_21 AC 291 ms
54,316 KB
testcase_22 AC 290 ms
54,240 KB
testcase_23 AC 287 ms
54,360 KB
testcase_24 AC 289 ms
54,328 KB
testcase_25 AC 293 ms
54,224 KB
testcase_26 AC 290 ms
54,364 KB
testcase_27 AC 288 ms
54,308 KB
testcase_28 AC 292 ms
54,436 KB
testcase_29 AC 293 ms
54,316 KB
testcase_30 AC 296 ms
54,332 KB
testcase_31 AC 290 ms
54,440 KB
testcase_32 AC 293 ms
54,304 KB
testcase_33 AC 289 ms
54,420 KB
testcase_34 AC 290 ms
54,452 KB
testcase_35 AC 292 ms
54,172 KB
testcase_36 AC 285 ms
54,232 KB
testcase_37 AC 288 ms
54,252 KB
testcase_38 AC 289 ms
54,212 KB
testcase_39 AC 292 ms
54,232 KB
testcase_40 AC 290 ms
54,372 KB
testcase_41 AC 289 ms
54,284 KB
testcase_42 AC 296 ms
54,212 KB
testcase_43 AC 290 ms
54,316 KB
testcase_44 AC 291 ms
54,320 KB
testcase_45 AC 288 ms
54,336 KB
testcase_46 AC 286 ms
54,236 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

fun main(args: Array<String>) {
    val i = readLine()!!.toBigInteger()

    println((i * 10.toBigInteger()))
}
0