結果
問題 | No.249 N言っちゃダメゲーム (2) |
ユーザー | prog470 |
提出日時 | 2016-09-25 21:22:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 381 bytes |
コンパイル時間 | 948 ms |
コンパイル使用メモリ | 68,480 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 12:56:06 |
合計ジャッジ時間 | 1,885 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include<stdio.h> #include <vector> #include <list> #include <map> #include <set> #include <queue> #include <stack> #include <algorithm> #include <sstream> #include <iostream> #include <string> #include <stdio.h> using namespace std; int main() { int N, K; cin >> N >> K; if ((N - 1) % (K + 1) == 0) { cout << 0 << endl; } else { cout << 1000 << endl; } return 0; }