結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
hum_op
|
| 提出日時 | 2017-04-11 13:21:17 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 176 bytes |
| 記録 | |
| コンパイル時間 | 49 ms |
| コンパイル使用メモリ | 35,712 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-21 13:21:48 |
| 合計ジャッジ時間 | 1,023 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 8 |
ソースコード
#include <stdio.h>
int main(){
int B;
int ans;
int i;
for(i = 1; i <= 10; i++){
scanf("%d", &B);
if(B != i){
ans = B;
}
}
printf("%d\n", ans);
return 0;
}
hum_op