結果

問題 No.809 かけ算
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 12:33:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 8,758 ms
コンパイル使用メモリ 426,316 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-11-20 18:08:36
合計ジャッジ時間 11,593 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
54,164 KB
testcase_01 AC 273 ms
54,272 KB
testcase_02 AC 276 ms
54,220 KB
testcase_03 AC 266 ms
54,248 KB
testcase_04 AC 266 ms
54,340 KB
testcase_05 AC 268 ms
54,156 KB
testcase_06 AC 263 ms
54,164 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