結果

問題 No.1636 森
ユーザー DieGoDieGo
提出日時 2021-08-25 22:21:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 9,481 ms
コンパイル使用メモリ 419,744 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-11-17 06:02:45
合計ジャッジ時間 16,762 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
49,664 KB
testcase_01 AC 257 ms
49,688 KB
testcase_02 AC 257 ms
49,440 KB
testcase_03 AC 259 ms
49,728 KB
testcase_04 AC 264 ms
49,688 KB
testcase_05 AC 266 ms
49,460 KB
testcase_06 AC 271 ms
49,680 KB
testcase_07 AC 263 ms
49,600 KB
testcase_08 AC 260 ms
49,648 KB
testcase_09 AC 257 ms
49,572 KB
testcase_10 AC 256 ms
49,832 KB
testcase_11 AC 260 ms
49,824 KB
testcase_12 AC 269 ms
49,920 KB
testcase_13 AC 272 ms
49,604 KB
testcase_14 AC 265 ms
49,704 KB
testcase_15 AC 278 ms
49,616 KB
testcase_16 AC 264 ms
49,468 KB
testcase_17 AC 270 ms
49,556 KB
testcase_18 AC 266 ms
49,576 KB
testcase_19 AC 265 ms
49,584 KB
testcase_20 AC 259 ms
49,720 KB
testcase_21 AC 266 ms
49,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()

    println( (n-1) * (n-1))
}
0