結果

問題 No.809 かけ算
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 12:33:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 10,632 ms
コンパイル使用メモリ 412,960 KB
実行使用メモリ 50,580 KB
最終ジャッジ日時 2023-08-13 01:52:40
合計ジャッジ時間 13,805 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
50,156 KB
testcase_01 AC 269 ms
50,140 KB
testcase_02 AC 269 ms
50,580 KB
testcase_03 AC 272 ms
50,216 KB
testcase_04 AC 270 ms
50,192 KB
testcase_05 AC 268 ms
50,436 KB
testcase_06 AC 267 ms
50,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'arg' is never used
fun main(arg: Array<String>) {
         ^

ソースコード

diff #

import java.lang.Math
fun main(arg: Array<String>) {
    println("1 ${readLine()!!}")
}
0