結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2026-02-11 02:22:47 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 435 bytes |
| 記録 | |
| コンパイル時間 | 2,126 ms |
| コンパイル使用メモリ | 210,344 KB |
| 実行使用メモリ | 7,968 KB |
| 最終ジャッジ日時 | 2026-02-11 02:22:51 |
| 合計ジャッジ時間 | 3,122 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 WA * 1 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:21:19: 警告: ‘ans’ may be used uninitialized [-Wmaybe-uninitialized]
21 | cout << ans << '\n';
| ^~~~
main.cpp:11:8: 備考: ‘ans’ はここで定義されています
11 | int ans;
| ^~~
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
int num;
int ans;
bool is_found = false;
for(int i = 1; i <= 9; i++) {
cin >> num;
if(num != i && is_found == false) {
ans = i;
is_found = true;
}
}
cout << ans << '\n';
return 0;
}
vjudge1