結果

問題 No.1926 Sequence of Remainders
ユーザー tentententen
提出日時 2022-05-09 13:57:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 1,280 bytes
コンパイル時間 2,502 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 50,956 KB
最終ジャッジ日時 2024-07-16 12:19:56
合計ジャッジ時間 19,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,040 KB
testcase_01 AC 310 ms
48,192 KB
testcase_02 AC 320 ms
47,720 KB
testcase_03 AC 293 ms
47,428 KB
testcase_04 AC 300 ms
47,620 KB
testcase_05 AC 317 ms
48,460 KB
testcase_06 AC 374 ms
49,344 KB
testcase_07 AC 386 ms
48,560 KB
testcase_08 AC 383 ms
48,616 KB
testcase_09 AC 367 ms
47,636 KB
testcase_10 AC 375 ms
48,340 KB
testcase_11 AC 371 ms
48,328 KB
testcase_12 AC 372 ms
48,340 KB
testcase_13 AC 368 ms
48,476 KB
testcase_14 AC 370 ms
49,368 KB
testcase_15 AC 366 ms
48,452 KB
testcase_16 AC 373 ms
48,660 KB
testcase_17 AC 365 ms
48,068 KB
testcase_18 AC 372 ms
48,528 KB
testcase_19 AC 368 ms
48,520 KB
testcase_20 AC 377 ms
48,264 KB
testcase_21 AC 375 ms
49,416 KB
testcase_22 AC 360 ms
48,260 KB
testcase_23 AC 370 ms
49,608 KB
testcase_24 AC 372 ms
48,600 KB
testcase_25 AC 367 ms
49,604 KB
testcase_26 AC 379 ms
49,128 KB
testcase_27 AC 378 ms
49,104 KB
testcase_28 AC 383 ms
49,124 KB
testcase_29 AC 374 ms
49,136 KB
testcase_30 AC 376 ms
48,700 KB
testcase_31 AC 378 ms
50,956 KB
testcase_32 AC 380 ms
50,400 KB
testcase_33 AC 381 ms
48,908 KB
testcase_34 AC 378 ms
49,060 KB
testcase_35 AC 380 ms
49,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int t = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (t-- > 0) {
            int n = sc.nextInt();
            int m = sc.nextInt();
            long k = sc.nextLong();
            long first = k % m;
            if (first < m - n) {
                sb.append(first).append("\n");
            } else {
                sb.append("0\n");
            }
        }
        System.out.print(sb);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0