結果

問題 No.80 四角形を描こう
ユーザー バカらっくバカらっく
提出日時 2019-09-26 00:27:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 12,056 ms
コンパイル使用メモリ 434,108 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-09-22 21:56:25
合計ジャッジ時間 16,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
50,864 KB
testcase_01 AC 307 ms
51,004 KB
testcase_02 AC 309 ms
50,708 KB
testcase_03 AC 292 ms
53,432 KB
testcase_04 AC 309 ms
50,636 KB
testcase_05 AC 311 ms
54,668 KB
testcase_06 AC 287 ms
49,708 KB
testcase_07 AC 287 ms
49,744 KB
testcase_08 AC 309 ms
54,604 KB
testcase_09 AC 310 ms
50,956 KB
testcase_10 AC 307 ms
54,668 KB
testcase_11 AC 310 ms
51,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
    val remain = readLine()!!.toInt()
    if(remain < 4) {
        println("0")
        return
    }

    var ans = (1..(remain/2)).map { it * ((remain - it * 2) / 2) }.max()
    println(ans)

}

0