結果

問題 No.2259 Gas Station
ユーザー kusagame12kusagame12
提出日時 2023-11-22 16:09:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-09-26 07:34:37
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,304 KB
testcase_01 AC 121 ms
41,272 KB
testcase_02 AC 107 ms
41,320 KB
testcase_03 AC 121 ms
41,284 KB
testcase_04 AC 124 ms
41,568 KB
testcase_05 AC 122 ms
41,264 KB
testcase_06 AC 124 ms
41,372 KB
testcase_07 AC 117 ms
41,444 KB
testcase_08 AC 108 ms
41,260 KB
testcase_09 AC 119 ms
40,164 KB
testcase_10 AC 109 ms
41,456 KB
testcase_11 AC 115 ms
41,492 KB
testcase_12 AC 105 ms
41,276 KB
testcase_13 AC 118 ms
41,536 KB
testcase_14 AC 120 ms
41,472 KB
testcase_15 AC 107 ms
41,432 KB
testcase_16 AC 115 ms
41,396 KB
testcase_17 AC 106 ms
41,148 KB
testcase_18 AC 106 ms
41,592 KB
testcase_19 AC 118 ms
41,284 KB
testcase_20 AC 116 ms
41,488 KB
testcase_21 AC 101 ms
41,416 KB
testcase_22 AC 122 ms
41,152 KB
testcase_23 AC 123 ms
41,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    static int[] dy = {0,1,0,1};
    static int[] dx = {1,0,1,0};
    
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        
        int l = sc.nextInt();
        int r = sc.nextInt();
        int c = sc.nextInt();

        int ans = 999;
        for(int i = l ; i <= r ; i++){
            
            int x = ((i % 1000) * (c % 1000)) % 1000;
            
            if(x == 0){
                ans = 0;
                break;
            }
            
            ans = Math.min(ans , 1000 - x);
            
        }
        
        System.out.println(ans);
        
    }
    
}
0