結果

問題 No.816 Beautiful tuples
ユーザー rutilicusrutilicus
提出日時 2020-09-13 08:39:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 1,500 ms
コード長 726 bytes
コンパイル時間 12,246 ms
コンパイル使用メモリ 434,132 KB
実行使用メモリ 55,036 KB
最終ジャッジ日時 2024-06-11 15:37:27
合計ジャッジ時間 17,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
51,968 KB
testcase_01 AC 284 ms
55,036 KB
testcase_02 AC 277 ms
51,876 KB
testcase_03 AC 272 ms
51,740 KB
testcase_04 AC 272 ms
51,688 KB
testcase_05 AC 266 ms
51,676 KB
testcase_06 AC 266 ms
51,736 KB
testcase_07 AC 268 ms
51,752 KB
testcase_08 AC 287 ms
51,880 KB
testcase_09 AC 273 ms
51,744 KB
testcase_10 AC 268 ms
51,980 KB
testcase_11 AC 283 ms
51,828 KB
testcase_12 AC 294 ms
51,804 KB
testcase_13 AC 278 ms
52,076 KB
testcase_14 AC 278 ms
51,796 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:26:13: warning: 'appendln(Int): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(ans)
            ^

ソースコード

diff #

import kotlin.math.sqrt

fun main() {
    val builder = StringBuilder()

    val (a, b) = readInputLine().split(" ").map { it.toInt() }

    var ans = -1

    for (c in 1..sqrt((a + b).toDouble()).toInt() + 1) {
        if ((a + b) % c == 0 && c != a && c != b) {
            if ((a + c) % b == 0 && (b + c) % a == 0) {
                ans = c
                break
            }
        }
        val c2 = (a + b) / c
        if ((a + b) % c2 == 0 && c2 != a && c2 != b) {
            if ((a + c2) % b == 0 && (b + c2) % a == 0) {
                ans = c2
                break
            }
        }
    }

    builder.appendln(ans)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0