結果

問題 No.71 そろばん
ユーザー firiexpfiriexp
提出日時 2019-03-03 17:18:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 334 ms / 5,000 ms
コード長 100 bytes
コンパイル時間 11,906 ms
コンパイル使用メモリ 427,916 KB
実行使用メモリ 49,984 KB
最終ジャッジ日時 2024-11-20 17:30:16
合計ジャッジ時間 18,709 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
49,480 KB
testcase_01 AC 311 ms
49,648 KB
testcase_02 AC 298 ms
49,752 KB
testcase_03 AC 298 ms
49,636 KB
testcase_04 AC 334 ms
49,640 KB
testcase_05 AC 294 ms
49,984 KB
testcase_06 AC 291 ms
49,852 KB
testcase_07 AC 292 ms
49,740 KB
testcase_08 AC 293 ms
49,700 KB
testcase_09 AC 299 ms
49,520 KB
testcase_10 AC 298 ms
49,616 KB
testcase_11 AC 295 ms
49,656 KB
testcase_12 AC 297 ms
49,640 KB
testcase_13 AC 294 ms
49,868 KB
testcase_14 AC 292 ms
49,616 KB
testcase_15 AC 292 ms
49,576 KB
testcase_16 AC 290 ms
49,612 KB
testcase_17 AC 290 ms
49,964 KB
testcase_18 AC 295 ms
49,500 KB
testcase_19 AC 293 ms
49,500 KB
testcase_20 AC 304 ms
49,608 KB
testcase_21 AC 296 ms
49,888 KB
testcase_22 AC 294 ms
49,628 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()!!.toLong()
    println((n/2+1)*((n+3)/2)-1)
}
0