結果

問題 No.1616 Joke
ユーザー バカらっくバカらっく
提出日時 2022-02-03 13:02:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 10,881 ms
コンパイル使用メモリ 406,456 KB
実行使用メモリ 50,608 KB
最終ジャッジ日時 2023-09-02 03:12:54
合計ジャッジ時間 16,399 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
50,296 KB
testcase_01 AC 267 ms
50,484 KB
testcase_02 AC 273 ms
50,348 KB
testcase_03 AC 266 ms
50,252 KB
testcase_04 AC 270 ms
50,304 KB
testcase_05 AC 268 ms
50,340 KB
testcase_06 AC 271 ms
50,520 KB
testcase_07 AC 274 ms
50,352 KB
testcase_08 AC 268 ms
50,244 KB
testcase_09 AC 269 ms
50,324 KB
testcase_10 AC 270 ms
50,320 KB
testcase_11 AC 272 ms
50,272 KB
testcase_12 AC 268 ms
50,292 KB
testcase_13 AC 271 ms
50,608 KB
testcase_14 AC 269 ms
50,516 KB
testcase_15 AC 266 ms
50,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    println(n)
    
}
0