結果

問題 No.2043 Ohuton and Makura
ユーザー 箱星箱星
提出日時 2022-04-24 22:53:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 10,659 ms
コンパイル使用メモリ 437,828 KB
実行使用メモリ 51,964 KB
最終ジャッジ日時 2024-09-20 03:02:43
合計ジャッジ時間 17,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
51,708 KB
testcase_01 AC 284 ms
51,952 KB
testcase_02 AC 305 ms
51,868 KB
testcase_03 AC 300 ms
51,640 KB
testcase_04 AC 313 ms
51,848 KB
testcase_05 AC 305 ms
51,488 KB
testcase_06 AC 298 ms
51,608 KB
testcase_07 AC 298 ms
51,868 KB
testcase_08 AC 295 ms
51,504 KB
testcase_09 AC 296 ms
51,508 KB
testcase_10 AC 311 ms
51,844 KB
testcase_11 AC 295 ms
51,504 KB
testcase_12 AC 285 ms
51,964 KB
testcase_13 AC 286 ms
51,788 KB
testcase_14 AC 286 ms
51,640 KB
testcase_15 AC 288 ms
51,800 KB
testcase_16 AC 293 ms
51,708 KB
testcase_17 AC 291 ms
51,848 KB
testcase_18 AC 294 ms
51,708 KB
testcase_19 AC 310 ms
51,644 KB
testcase_20 AC 306 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a, b, s) = readLongs()
    var ans = 0L
    for (x in 1..a) {
        for (y in 1..b) {
            if (x * y > s) break
            ans += (a - x + 1) * (b - y + 1)
        }
    }
    println(ans)
}

fun readLongs() = readln().split(" ").map { it.toLong() }
0