結果
| 問題 |
No.139 交差点
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-05-12 01:26:04 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 5,000 ms |
| コード長 | 332 bytes |
| コンパイル時間 | 2,182 ms |
| コンパイル使用メモリ | 190,772 KB |
| 最終ジャッジ日時 | 2025-01-10 10:31:16 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
8 | int n,l; scanf("%d%d",&n,&l);
| ~~~~~^~~~~~~~~~~~~~
main.cpp:11:33: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
11 | int x,w,T; scanf("%d%d%d",&x,&w,&T);
| ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
using namespace std;
int main(){
int n,l; scanf("%d%d",&n,&l);
int t=0,pos=0;
rep(i,n){
int x,w,T; scanf("%d%d%d",&x,&w,&T);
t+=x-pos;
if(t%(2*T)>=T || t%(2*T)+w>T) t=(t+2*T-1)/(2*T)*(2*T);
t+=w;
pos=x+w;
}
t+=l-pos;
printf("%d\n",t);
return 0;
}