結果

問題 No.1616 Joke
ユーザー バカらっくバカらっく
提出日時 2022-02-03 13:02:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 8,590 ms
コンパイル使用メモリ 424,148 KB
実行使用メモリ 49,856 KB
最終ジャッジ日時 2024-06-11 09:50:59
合計ジャッジ時間 14,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
49,648 KB
testcase_01 AC 245 ms
49,532 KB
testcase_02 AC 243 ms
49,764 KB
testcase_03 AC 248 ms
49,772 KB
testcase_04 AC 242 ms
49,764 KB
testcase_05 AC 249 ms
49,804 KB
testcase_06 AC 247 ms
49,800 KB
testcase_07 AC 246 ms
49,668 KB
testcase_08 AC 243 ms
49,788 KB
testcase_09 AC 247 ms
49,728 KB
testcase_10 AC 244 ms
49,656 KB
testcase_11 AC 255 ms
49,856 KB
testcase_12 AC 246 ms
49,744 KB
testcase_13 AC 244 ms
49,748 KB
testcase_14 AC 245 ms
49,748 KB
testcase_15 AC 244 ms
49,776 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