結果

問題 No.799 赤黒かーどげぇむ
ユーザー ktgw0316ktgw0316
提出日時 2019-03-30 00:03:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 11,413 ms
コンパイル使用メモリ 430,636 KB
実行使用メモリ 57,032 KB
最終ジャッジ日時 2024-11-20 17:38:43
合計ジャッジ時間 17,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
56,804 KB
testcase_01 AC 275 ms
56,948 KB
testcase_02 AC 286 ms
56,852 KB
testcase_03 AC 291 ms
56,904 KB
testcase_04 AC 286 ms
56,872 KB
testcase_05 AC 284 ms
56,960 KB
testcase_06 AC 282 ms
56,864 KB
testcase_07 AC 282 ms
56,884 KB
testcase_08 AC 287 ms
56,900 KB
testcase_09 AC 277 ms
56,952 KB
testcase_10 AC 282 ms
56,848 KB
testcase_11 AC 282 ms
56,956 KB
testcase_12 AC 290 ms
56,712 KB
testcase_13 AC 289 ms
57,032 KB
testcase_14 AC 292 ms
56,896 KB
testcase_15 AC 295 ms
56,892 KB
testcase_16 AC 286 ms
56,976 KB
testcase_17 AC 292 ms
57,004 KB
testcase_18 AC 298 ms
56,932 KB
testcase_19 AC 298 ms
56,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.*

fun main(args: Array<String>) {
    val (a, b, c, d) = readLine()!!.split(" ").map(String::toInt)
    // val red = (a..b).toList()
    // val black = (c..d).toList()
    val all = (b - a + 1) * (d - c + 1) 
    val same = max(0, min(b, d) - max(a, c) + 1)
    println(all - same)
}
0