結果

問題 No.244 ★1のグラフの問題
ユーザー バカらっくバカらっく
提出日時 2022-02-04 10:00:45
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 11,239 ms
コンパイル使用メモリ 408,636 KB
実行使用メモリ 52,460 KB
最終ジャッジ日時 2023-09-02 03:25:14
合計ジャッジ時間 15,005 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
50,540 KB
testcase_01 AC 268 ms
50,328 KB
testcase_02 AC 268 ms
50,264 KB
testcase_03 AC 271 ms
50,860 KB
testcase_04 AC 268 ms
50,408 KB
testcase_05 AC 269 ms
52,460 KB
testcase_06 AC 265 ms
50,252 KB
testcase_07 AC 265 ms
50,232 KB
testcase_08 AC 264 ms
50,216 KB
testcase_09 AC 265 ms
50,320 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-1)
}
0