結果
| 問題 | 
                            No.257 N言っちゃダメゲーム (3)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             goodbaton
                         | 
                    
| 提出日時 | 2015-08-01 01:20:24 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                            (最新)
                                AC
                                 
                             
                            (最初)
                            
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 731 bytes | 
| コンパイル時間 | 532 ms | 
| コンパイル使用メモリ | 72,180 KB | 
| 実行使用メモリ | 25,604 KB | 
| 平均クエリ数 | 1.43 | 
| 最終ジャッジ日時 | 2024-07-16 05:23:06 | 
| 合計ジャッジ時間 | 3,700 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 6 WA * 24 | 
ソースコード
#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){
        
        if(f && a==0){
            cout << 0 << endl;
        }else{
            a+=k+1;
            cout << a << endl;
        }
        
        cin >> b;
        
        f = false;
        if(b>=n) break;
    }
    
    return 0;
}
            
            
            
        
            
goodbaton