結果
問題 | No.632 穴埋め門松列 |
ユーザー | pyranine |
提出日時 | 2020-12-15 13:59:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 385 bytes |
コンパイル時間 | 1,461 ms |
コンパイル使用メモリ | 166,164 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-20 01:39:12 |
合計ジャッジ時間 | 1,981 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:16:10: warning: 'n' may be used uninitialized [-Wmaybe-uninitialized] 16 | x[n] = t; | ~~~~~^~~ main.cpp:6:7: note: 'n' was declared here 6 | int n; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { char x[3]; int n; for (int i = 0; i < 3; i++) { cin >> x[i]; if (x[i] == '?') n = i; } string ans = ""; for (int i = 0; i < 2; i++) { char t = i == 0 ? '1' : '4'; x[n] = t; if ((x[1] < x[0] && x[1] < x[2]) || (x[1] > x[0] && x[1] > x[2])) ans += t; } cout << ans << endl; return 0; }