結果

問題 No.552 十分簡単な星1の問題
ユーザー arbtarbt
提出日時 2017-09-16 19:17:13
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 13,887 ms
コンパイル使用メモリ 430,828 KB
実行使用メモリ 55,464 KB
最終ジャッジ日時 2024-11-20 12:16:44
合計ジャッジ時間 30,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 352 ms
55,268 KB
testcase_02 AC 352 ms
55,216 KB
testcase_03 AC 350 ms
55,112 KB
testcase_04 AC 352 ms
55,232 KB
testcase_05 AC 352 ms
55,304 KB
testcase_06 AC 354 ms
55,044 KB
testcase_07 AC 358 ms
55,140 KB
testcase_08 AC 359 ms
55,380 KB
testcase_09 AC 351 ms
55,248 KB
testcase_10 AC 359 ms
55,068 KB
testcase_11 AC 353 ms
55,256 KB
testcase_12 AC 358 ms
55,164 KB
testcase_13 AC 353 ms
55,160 KB
testcase_14 AC 354 ms
55,032 KB
testcase_15 AC 358 ms
55,208 KB
testcase_16 AC 357 ms
55,232 KB
testcase_17 AC 353 ms
55,220 KB
testcase_18 AC 354 ms
55,132 KB
testcase_19 AC 352 ms
55,100 KB
testcase_20 AC 354 ms
55,072 KB
testcase_21 AC 354 ms
55,152 KB
testcase_22 AC 356 ms
55,172 KB
testcase_23 AC 354 ms
55,388 KB
testcase_24 AC 349 ms
55,164 KB
testcase_25 AC 354 ms
55,464 KB
testcase_26 AC 358 ms
55,132 KB
testcase_27 AC 351 ms
55,192 KB
testcase_28 AC 354 ms
55,116 KB
testcase_29 RE -
testcase_30 AC 355 ms
55,352 KB
testcase_31 AC 351 ms
55,268 KB
testcase_32 AC 348 ms
55,260 KB
testcase_33 AC 349 ms
55,352 KB
testcase_34 AC 357 ms
55,164 KB
testcase_35 AC 350 ms
55,088 KB
testcase_36 AC 353 ms
55,248 KB
testcase_37 AC 352 ms
55,220 KB
testcase_38 AC 353 ms
55,072 KB
testcase_39 AC 354 ms
55,140 KB
testcase_40 AC 359 ms
55,120 KB
testcase_41 AC 353 ms
54,984 KB
testcase_42 AC 363 ms
55,252 KB
testcase_43 AC 353 ms
55,324 KB
testcase_44 AC 348 ms
55,100 KB
testcase_45 AC 351 ms
55,136 KB
testcase_46 AC 352 ms
55,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:14:11: warning: parameter 'argv' is never used
fun main( argv : Array<String> ) {
          ^

ソースコード

diff #

import java.util.Scanner

//
fun _Do() {
    
    val N = scan.nextLong()
    
    println(N.toString()+"0")

}

var scan = Scanner(System.`in`)
fun main( argv : Array<String> ) {
    _Do()
}

fun strings(N:Int):Array<String> = Array(N,{scan.next()})
fun ints(N:Int):Array<Int> = Array(N,{scan.nextInt()})
fun longs(N:Int):Array<Long> = Array(N,{scan.nextLong()})
0