結果
| 問題 |
No.481 1から10
|
| コンテスト | |
| ユーザー |
hum_op
|
| 提出日時 | 2017-04-11 13:21:17 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 176 bytes |
| コンパイル時間 | 266 ms |
| コンパイル使用メモリ | 28,032 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-18 07:04:29 |
| 合計ジャッジ時間 | 765 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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