結果

問題 No.1624 三角形の反射
ユーザー 箱星箱星
提出日時 2021-07-23 22:16:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 11,587 ms
コンパイル使用メモリ 437,860 KB
実行使用メモリ 52,136 KB
最終ジャッジ日時 2024-07-02 09:53:39
合計ジャッジ時間 20,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
51,160 KB
testcase_01 AC 302 ms
51,448 KB
testcase_02 AC 301 ms
51,348 KB
testcase_03 AC 303 ms
51,192 KB
testcase_04 AC 307 ms
51,228 KB
testcase_05 AC 304 ms
51,156 KB
testcase_06 AC 302 ms
51,348 KB
testcase_07 AC 311 ms
51,248 KB
testcase_08 AC 302 ms
51,236 KB
testcase_09 AC 305 ms
52,136 KB
testcase_10 AC 310 ms
51,424 KB
testcase_11 AC 311 ms
51,316 KB
testcase_12 AC 300 ms
51,280 KB
testcase_13 AC 305 ms
51,196 KB
testcase_14 AC 303 ms
51,268 KB
testcase_15 AC 308 ms
51,320 KB
testcase_16 AC 309 ms
51,092 KB
testcase_17 AC 306 ms
51,196 KB
testcase_18 AC 306 ms
51,324 KB
testcase_19 AC 303 ms
51,484 KB
testcase_20 AC 308 ms
51,284 KB
testcase_21 AC 310 ms
51,364 KB
testcase_22 AC 306 ms
51,464 KB
testcase_23 AC 305 ms
51,184 KB
testcase_24 AC 298 ms
51,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun gcd(a: Int, b: Int): Int {
    if (b == 0) return a
    val c = a % b
    return gcd(b, c)
}

fun PrintWriter.solve() {
    val s = nextLine()
    val n = s.replace(".", "").toInt()
    val d = gcd(n, 1000)
    val x = 1000 / d
    val y = n * x / 1000
    val final = if ((x + y) % 2 == 0) 'A' else if (x % 2 == 0) 'C' else 'B'
    var count = x + y - 2
    for (i in 1 until x + y step 2) {
        count++
    }
    for (i in 1 until (x - y).absoluteValue step 2) {
        count++
    }
    println("$final $count")
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0