結果

問題 No.1926 Sequence of Remainders
ユーザー 箱星箱星
提出日時 2022-05-16 21:09:10
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 990 bytes
コンパイル時間 12,962 ms
コンパイル使用メモリ 435,916 KB
実行使用メモリ 83,848 KB
最終ジャッジ日時 2024-09-14 14:18:07
合計ジャッジ時間 40,942 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
49,804 KB
testcase_01 AC 558 ms
82,000 KB
testcase_02 AC 555 ms
82,048 KB
testcase_03 AC 552 ms
81,936 KB
testcase_04 AC 563 ms
82,456 KB
testcase_05 AC 565 ms
82,724 KB
testcase_06 AC 612 ms
83,636 KB
testcase_07 AC 637 ms
83,708 KB
testcase_08 AC 632 ms
83,604 KB
testcase_09 AC 635 ms
83,540 KB
testcase_10 AC 640 ms
83,824 KB
testcase_11 AC 634 ms
83,716 KB
testcase_12 AC 639 ms
83,708 KB
testcase_13 AC 648 ms
83,516 KB
testcase_14 AC 648 ms
83,848 KB
testcase_15 AC 643 ms
83,664 KB
testcase_16 AC 631 ms
83,524 KB
testcase_17 AC 638 ms
83,636 KB
testcase_18 AC 631 ms
83,580 KB
testcase_19 AC 622 ms
83,472 KB
testcase_20 AC 639 ms
83,548 KB
testcase_21 AC 633 ms
83,784 KB
testcase_22 AC 631 ms
83,696 KB
testcase_23 AC 636 ms
83,728 KB
testcase_24 AC 625 ms
83,816 KB
testcase_25 AC 631 ms
83,616 KB
testcase_26 AC 643 ms
83,568 KB
testcase_27 AC 628 ms
83,708 KB
testcase_28 AC 636 ms
83,528 KB
testcase_29 AC 615 ms
83,588 KB
testcase_30 AC 643 ms
83,828 KB
testcase_31 AC 631 ms
83,672 KB
testcase_32 AC 641 ms
83,736 KB
testcase_33 AC 632 ms
83,584 KB
testcase_34 AC 635 ms
83,660 KB
testcase_35 AC 643 ms
83,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val numCases = nextInt()
    case@ for (_i in 0 until numCases) {
        val n = nextInt()
        val m = nextInt()
        val k = nextInt()
        val a0 = k % m
        println(if (a0 < m - n) a0 else 0)
    }
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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