結果

問題 No.1486 ロボット
コンテスト
ユーザー Mr_uts1_quizer
提出日時 2021-04-23 21:39:07
言語 C++14
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
TLE  
実行時間 -
コード長 286 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,032 ms
コンパイル使用メモリ 179,520 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2026-03-25 15:40:27
合計ジャッジ時間 25,291 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 TLE * 1
other AC * 12 TLE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
 
int main() {
  int a,b,c,d,e;
  cin >> a >> b >> c >> d >> e;
  int count=0;
  for(int i=0;i<e;i++){
    if((i+1) % (a+b) <= a && (i+1) % (c+d) <= c && (i+1) % (a+b) != 0 && (i+1) % (c+d) != 0){
      count++;
    }
  }
  cout << count;
}
0