結果
問題 | No.249 N言っちゃダメゲーム (2) |
ユーザー | mdj982 |
提出日時 | 2015-12-26 16:02:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 846 bytes |
コンパイル時間 | 626 ms |
コンパイル使用メモリ | 91,924 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 00:21:58 |
合計ジャッジ時間 | 1,099 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <deque> #include <string> #include <tuple> #include <functional> #include <numeric> #include <cmath> #include <iomanip> #include <map> #include <random> //#include "toollib.h" #define INT_MAX 2147483647 #define Loop(i, n) for(int i = 0; i < (int)n; i++) #pragma warning (disable:4018) using namespace std; typedef long long int lint; //***** Main Program ***** int main() { vector<pair<int, int>> input(1000); Loop(i, 1000) cin >> input[i].first >> input[i].second; int mode = 0, ret = 0; Loop(i, 1000) { if (mode == 0) { if (input[i].first % (input[i].second + 1) != 0) { ret++; mode = 1; } } if (mode == 1) { if (input[i].first % (input[i].second + 1) != 0) { mode = 0; } else { ret++; } } } cout << ret << endl; return 0; }