結果

問題 No.552 十分簡単な星1の問題
ユーザー arbtarbt
提出日時 2017-09-16 19:19:33
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 9,704 ms
コンパイル使用メモリ 428,160 KB
実行使用メモリ 55,268 KB
最終ジャッジ日時 2024-11-20 12:19:39
合計ジャッジ時間 25,815 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 308 ms
55,040 KB
testcase_02 AC 307 ms
55,260 KB
testcase_03 AC 296 ms
55,092 KB
testcase_04 AC 296 ms
55,080 KB
testcase_05 AC 301 ms
55,216 KB
testcase_06 AC 306 ms
55,000 KB
testcase_07 AC 300 ms
55,004 KB
testcase_08 AC 303 ms
54,944 KB
testcase_09 AC 302 ms
55,100 KB
testcase_10 AC 300 ms
55,008 KB
testcase_11 AC 300 ms
55,008 KB
testcase_12 AC 302 ms
55,092 KB
testcase_13 AC 300 ms
55,180 KB
testcase_14 AC 305 ms
55,132 KB
testcase_15 AC 305 ms
55,048 KB
testcase_16 AC 306 ms
55,052 KB
testcase_17 AC 302 ms
55,132 KB
testcase_18 AC 305 ms
55,152 KB
testcase_19 AC 300 ms
55,012 KB
testcase_20 AC 304 ms
55,004 KB
testcase_21 AC 300 ms
55,024 KB
testcase_22 AC 306 ms
55,224 KB
testcase_23 AC 310 ms
54,924 KB
testcase_24 AC 306 ms
54,996 KB
testcase_25 AC 301 ms
55,124 KB
testcase_26 AC 302 ms
55,236 KB
testcase_27 AC 299 ms
55,080 KB
testcase_28 AC 306 ms
55,116 KB
testcase_29 AC 301 ms
55,068 KB
testcase_30 AC 303 ms
55,268 KB
testcase_31 AC 305 ms
54,996 KB
testcase_32 AC 303 ms
55,028 KB
testcase_33 AC 304 ms
55,180 KB
testcase_34 AC 303 ms
55,096 KB
testcase_35 AC 302 ms
55,012 KB
testcase_36 AC 307 ms
55,064 KB
testcase_37 AC 299 ms
54,928 KB
testcase_38 AC 304 ms
55,148 KB
testcase_39 AC 301 ms
55,000 KB
testcase_40 AC 304 ms
55,056 KB
testcase_41 AC 313 ms
55,048 KB
testcase_42 AC 308 ms
55,008 KB
testcase_43 AC 310 ms
55,156 KB
testcase_44 AC 306 ms
55,068 KB
testcase_45 AC 305 ms
55,160 KB
testcase_46 AC 307 ms
55,144 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.next()
    
    println(N+"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