結果

問題 No.1636 森
ユーザー 箱星箱星
提出日時 2021-08-06 21:27:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 11,974 ms
コンパイル使用メモリ 437,700 KB
実行使用メモリ 54,536 KB
最終ジャッジ日時 2024-09-17 01:19:55
合計ジャッジ時間 20,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
54,176 KB
testcase_01 AC 293 ms
54,180 KB
testcase_02 AC 286 ms
54,228 KB
testcase_03 AC 350 ms
54,212 KB
testcase_04 AC 341 ms
54,372 KB
testcase_05 AC 336 ms
54,280 KB
testcase_06 AC 335 ms
54,536 KB
testcase_07 AC 341 ms
54,436 KB
testcase_08 AC 291 ms
54,312 KB
testcase_09 AC 289 ms
54,180 KB
testcase_10 AC 287 ms
54,324 KB
testcase_11 AC 292 ms
54,256 KB
testcase_12 AC 291 ms
54,192 KB
testcase_13 AC 291 ms
54,316 KB
testcase_14 AC 294 ms
54,232 KB
testcase_15 AC 291 ms
54,308 KB
testcase_16 AC 291 ms
54,296 KB
testcase_17 AC 298 ms
54,288 KB
testcase_18 AC 291 ms
54,304 KB
testcase_19 AC 289 ms
54,500 KB
testcase_20 AC 287 ms
54,312 KB
testcase_21 AC 295 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    println((n - 1).let { it * it })
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0