結果

問題 No.1926 Sequence of Remainders
ユーザー ripityripity
提出日時 2022-03-03 19:43:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,145 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 3,069 ms
コンパイル使用メモリ 73,624 KB
実行使用メモリ 58,740 KB
最終ジャッジ日時 2024-10-09 04:45:47
合計ジャッジ時間 44,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,420 KB
testcase_01 AC 966 ms
57,532 KB
testcase_02 AC 884 ms
57,232 KB
testcase_03 AC 900 ms
57,396 KB
testcase_04 AC 1,007 ms
57,620 KB
testcase_05 AC 859 ms
57,864 KB
testcase_06 AC 1,096 ms
57,908 KB
testcase_07 AC 1,130 ms
57,992 KB
testcase_08 AC 1,090 ms
57,880 KB
testcase_09 AC 1,076 ms
57,636 KB
testcase_10 AC 1,108 ms
57,760 KB
testcase_11 AC 1,141 ms
58,048 KB
testcase_12 AC 1,100 ms
57,908 KB
testcase_13 AC 1,107 ms
57,880 KB
testcase_14 AC 1,130 ms
57,824 KB
testcase_15 AC 1,036 ms
57,596 KB
testcase_16 AC 1,121 ms
57,972 KB
testcase_17 AC 1,061 ms
57,776 KB
testcase_18 AC 1,063 ms
57,592 KB
testcase_19 AC 1,108 ms
57,632 KB
testcase_20 AC 1,093 ms
57,896 KB
testcase_21 AC 1,102 ms
58,740 KB
testcase_22 AC 1,114 ms
58,036 KB
testcase_23 AC 1,108 ms
57,908 KB
testcase_24 AC 1,105 ms
57,668 KB
testcase_25 AC 1,084 ms
57,880 KB
testcase_26 AC 1,084 ms
57,880 KB
testcase_27 AC 1,104 ms
57,360 KB
testcase_28 AC 1,145 ms
57,088 KB
testcase_29 AC 1,138 ms
58,672 KB
testcase_30 AC 1,083 ms
57,524 KB
testcase_31 AC 1,080 ms
57,540 KB
testcase_32 AC 1,119 ms
57,952 KB
testcase_33 AC 1,098 ms
57,540 KB
testcase_34 AC 1,124 ms
57,752 KB
testcase_35 AC 1,118 ms
58,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    
    public static Scanner sc = new Scanner(System.in);
    public static PrintWriter pw = new PrintWriter(System.out);
    
    public static void main(String[] args) {
        
        int t = sc.nextInt();
        while( t > 0 ) {
            solve();
            t--;
        }
        
        pw.flush();
        
    }
    
    static void solve() {
        
        int N = sc.nextInt();
        int M = sc.nextInt();
        int K = sc.nextInt();
        pw.println( K%M < M-N ? K%M : 0 );
        
    }
    
}
0