結果
| 問題 | 
                            No.257 N言っちゃダメゲーム (3)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             goodbaton
                         | 
                    
| 提出日時 | 2015-08-01 01:18:46 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 54 ms / 2,000 ms | 
| コード長 | 608 bytes | 
| コンパイル時間 | 700 ms | 
| コンパイル使用メモリ | 72,064 KB | 
| 実行使用メモリ | 25,220 KB | 
| 平均クエリ数 | 3.70 | 
| 最終ジャッジ日時 | 2024-07-16 21:00:50 | 
| 合計ジャッジ時間 | 3,846 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 30 | 
ソースコード
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <cstring>
typedef long long ll;
using namespace std;
#define mod 1000000009
#define INF 10000000
#define LLINF 2000000000000000000LL
#define SIZE 10001
int main(){
    int n,k;
    int s,b=0;
    int f = true;
    cin >> n >> k;
    
    int a = (n-1)%(k+1);
    
    while(1){
        cout << a << endl;
        a+=k+1;
        cin >> b;
        
        if(b>=n) break;
    }
    
    return 0;
}
            
            
            
        
            
goodbaton