結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー goodbatongoodbaton
提出日時 2015-08-01 01:21:37
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 743 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 72,308 KB
実行使用メモリ 25,604 KB
平均クエリ数 3.40
最終ジャッジ日時 2024-07-16 05:23:27
合計ジャッジ時間 4,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 53 ms
25,220 KB
testcase_02 AC 55 ms
25,508 KB
testcase_03 AC 53 ms
24,964 KB
testcase_04 WA -
testcase_05 AC 52 ms
25,476 KB
testcase_06 AC 51 ms
24,836 KB
testcase_07 AC 50 ms
24,580 KB
testcase_08 AC 50 ms
25,604 KB
testcase_09 AC 50 ms
24,836 KB
testcase_10 AC 51 ms
24,580 KB
testcase_11 AC 53 ms
25,220 KB
testcase_12 AC 51 ms
24,580 KB
testcase_13 AC 51 ms
25,220 KB
testcase_14 AC 53 ms
25,220 KB
testcase_15 AC 52 ms
24,580 KB
testcase_16 WA -
testcase_17 AC 51 ms
24,964 KB
testcase_18 AC 51 ms
25,220 KB
testcase_19 WA -
testcase_20 AC 50 ms
25,220 KB
testcase_21 AC 54 ms
24,580 KB
testcase_22 AC 53 ms
24,808 KB
testcase_23 AC 53 ms
24,580 KB
testcase_24 AC 54 ms
24,580 KB
testcase_25 AC 55 ms
25,220 KB
testcase_26 AC 57 ms
24,964 KB
testcase_27 AC 51 ms
24,580 KB
testcase_28 AC 52 ms
24,580 KB
testcase_29 AC 52 ms
24,580 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |     scanf("%d%d",&n,&k);
      |     ~~~~~^~~~~~~~~~~~~~
main.cpp:41:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   41 |         scanf("%d",&b);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#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;
    scanf("%d%d",&n,&k);
    
    int a = (n-1)%(k+1);
    
    while(1){
        
        if(f && a==0){
            cout << 0 << endl;
        }else{
            cout << a << endl;
            a+=k+1;
        }
        
        scanf("%d",&b);
        
        f = false;
        if(b>=n) break;
    }
    
    return 0;
}
0