結果

問題 No.1636 森
ユーザー DieGoDieGo
提出日時 2021-08-25 22:21:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 9,573 ms
コンパイル使用メモリ 426,176 KB
実行使用メモリ 49,980 KB
最終ジャッジ日時 2024-04-28 13:47:50
合計ジャッジ時間 16,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
49,592 KB
testcase_01 AC 254 ms
49,628 KB
testcase_02 AC 260 ms
49,896 KB
testcase_03 AC 248 ms
49,748 KB
testcase_04 AC 261 ms
49,712 KB
testcase_05 AC 257 ms
49,924 KB
testcase_06 AC 252 ms
49,384 KB
testcase_07 AC 247 ms
49,616 KB
testcase_08 AC 256 ms
49,508 KB
testcase_09 AC 257 ms
49,372 KB
testcase_10 AC 252 ms
49,840 KB
testcase_11 AC 244 ms
49,808 KB
testcase_12 AC 253 ms
49,716 KB
testcase_13 AC 252 ms
49,980 KB
testcase_14 AC 261 ms
49,624 KB
testcase_15 AC 246 ms
49,768 KB
testcase_16 AC 270 ms
49,612 KB
testcase_17 AC 255 ms
49,440 KB
testcase_18 AC 250 ms
49,588 KB
testcase_19 AC 258 ms
49,620 KB
testcase_20 AC 272 ms
49,916 KB
testcase_21 AC 266 ms
49,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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