結果
問題 | No.305 鍵(2) |
ユーザー | mdj982 |
提出日時 | 2015-12-31 16:15:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 834 bytes |
コンパイル時間 | 893 ms |
コンパイル使用メモリ | 92,376 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 86.69 |
最終ジャッジ日時 | 2024-07-16 22:49:03 |
合計ジャッジ時間 | 2,486 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
24,964 KB |
testcase_01 | AC | 28 ms
24,964 KB |
testcase_02 | AC | 28 ms
24,824 KB |
testcase_03 | AC | 29 ms
24,580 KB |
testcase_04 | AC | 29 ms
24,836 KB |
testcase_05 | AC | 29 ms
24,836 KB |
testcase_06 | AC | 25 ms
24,964 KB |
testcase_07 | AC | 29 ms
24,836 KB |
testcase_08 | AC | 28 ms
24,964 KB |
testcase_09 | AC | 27 ms
24,580 KB |
testcase_10 | AC | 28 ms
25,220 KB |
testcase_11 | AC | 28 ms
24,836 KB |
testcase_12 | AC | 28 ms
24,964 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:45:30: warning: ‘c’ may be used uninitialized in this function [-Wmaybe-uninitialized] 45 | s[a] = c;
ソースコード
#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; typedef struct { int x; int y; }coordinate; //***** Main Program ***** int main() { string s = "0000000000"; int x; string judge; int a, b, c; a = 0; b = -1; do { cout << s << endl; cin >> x >> judge; if (judge == "unlocked") break; if (x > b) { b = x; c = s[a]; } if (s[a] < '9') s[a]++; else { s[a] = c; if (a < 9) { a++; b = -1; } else break; } } while (true); return 0; }