結果
問題 | No.139 交差点 |
ユーザー | Onju |
提出日時 | 2015-01-30 00:11:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 643 bytes |
コンパイル時間 | 421 ms |
コンパイル使用メモリ | 53,620 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 04:19:09 |
合計ジャッジ時間 | 1,202 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#include <iostream> #define NMAX 100 using namespace std; int main() { int N, L, A = 0, P = 0;; cin >> N >> L; int X[NMAX], W[NMAX], T[NMAX]; for (int i = 0; i < N; ++i) { cin >> X[i] >> W[i] >> T[i]; //交差点前まで進む A += X[i] - P; P = X[i] + W[i]; //交差点判定 int Tt = A / T[i]; if (Tt & 1) //既に赤信号なので待つ A = T[i] * (Tt + 1); else //青のうちに渡れるか if (T[i] * (Tt + 1) >= A + W[i]) //渡れる A += W[i]; else //渡れない 一生渡れない場合?知らんがな A = T[i] * (Tt + 2) + W[i]; } A += L - P; cout << A; return 0; }