結果
問題 | No.241 出席番号(1) |
ユーザー | twtw50763695 |
提出日時 | 2018-12-24 00:12:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 743 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 23,424 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 10:50:32 |
合計ジャッジ時間 | 1,837 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 0 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 0 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 0 ms
6,944 KB |
testcase_21 | WA | - |
testcase_22 | AC | 0 ms
6,940 KB |
testcase_23 | AC | 0 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 0 ms
6,944 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | AC | 0 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | AC | 1 ms
6,940 KB |
testcase_30 | AC | 1 ms
6,944 KB |
testcase_31 | AC | 1 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:19:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf("%d",&a[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(){ int n; int i; int j; int e=0; int c=0; scanf("%d",&n); int a[50]; int num[50]; int b=0; for(i=0;i<n;i++){ scanf("%d",&a[i]); } for(i=0;i<50;i++){ num[i]=i; } while(1){ for(i=0;i<n;i++){ if(a[i]==num[i]){ for(j=n-1;j>0;j--){ if(num[i]!=a[j]){ b=num[i]; num[i]=num[j]; num[j]=b; break; } } } for(j=0;j<n;j++){ if(a[j]==num[j]){ break; }else if(j==n-1){ e=1; break; } if(e==1){ break; } } } c++; if(c==n){ e=-1; break; }else if(e==1){ break; } } if(e==-1){ printf("%d\n",e); }else{ for(i=0;i<n;i++){ printf("%d\n",num[i]); } } }