結果

問題 No.139 交差点
ユーザー kou6839kou6839
提出日時 2015-02-06 17:08:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 603 bytes
コンパイル時間 2,861 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 42,072 KB
最終ジャッジ日時 2024-06-23 10:11:09
合計ジャッジ時間 8,357 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,300 KB
testcase_01 AC 132 ms
41,064 KB
testcase_02 AC 132 ms
41,300 KB
testcase_03 AC 137 ms
41,308 KB
testcase_04 AC 143 ms
41,704 KB
testcase_05 AC 143 ms
41,704 KB
testcase_06 AC 138 ms
41,472 KB
testcase_07 AC 152 ms
41,872 KB
testcase_08 AC 148 ms
41,668 KB
testcase_09 AC 146 ms
41,568 KB
testcase_10 AC 156 ms
41,728 KB
testcase_11 AC 138 ms
41,616 KB
testcase_12 AC 153 ms
41,872 KB
testcase_13 AC 138 ms
41,344 KB
testcase_14 AC 146 ms
41,856 KB
testcase_15 AC 161 ms
41,936 KB
testcase_16 AC 137 ms
41,624 KB
testcase_17 AC 154 ms
41,916 KB
testcase_18 AC 147 ms
41,648 KB
testcase_19 AC 157 ms
41,836 KB
testcase_20 AC 141 ms
41,556 KB
testcase_21 AC 130 ms
41,516 KB
testcase_22 AC 131 ms
41,160 KB
testcase_23 AC 158 ms
42,072 KB
testcase_24 AC 132 ms
41,564 KB
testcase_25 AC 137 ms
41,696 KB
testcase_26 AC 140 ms
41,532 KB
testcase_27 AC 134 ms
41,536 KB
testcase_28 AC 137 ms
41,408 KB
testcase_29 AC 143 ms
41,696 KB
testcase_30 AC 145 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int l = sc.nextInt();
        int nowt = 0;
        int nowl = 0;
        for(int i=0;i<n;i++){
        	int a =sc.nextInt();
        	int b =sc.nextInt();
        	int c = sc.nextInt();
        	nowt+=(a-nowl);
        	nowl=a+b;
        	if(nowt%(2*c) <= c-b){
        		nowt+=b;
        	}else{
        		nowt+=b+(2*c-nowt%(2*c));
        	}
        }
        System.out.println(l-nowl+nowt);
        
    }
}		
0