結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
Bantako
|
| 提出日時 | 2017-06-27 15:52:47 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 212 bytes |
| 記録 | |
| コンパイル時間 | 124 ms |
| コンパイル使用メモリ | 37,248 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-20 07:46:45 |
| 合計ジャッジ時間 | 863 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
2 | main(){
| ^~~~
main.cpp: In function 'int main()':
main.cpp:12:11: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized]
12 | printf("%d\n",ans);;
| ~~~~~~^~~~~~~~~~~~
main.cpp:3:9: note: 'ans' was declared here
3 | int ans;
| ^~~
ソースコード
#include<stdio.h>
main(){
int ans;
for(int i = 1;i <= 10;i++){
int n;
scanf("%d",&n);
if(n != i){
ans = i;
break;
}
}
printf("%d\n",ans);;
}
Bantako