結果
問題 | No.39 桁の数字を入れ替え |
ユーザー | mamo_ICE |
提出日時 | 2022-12-22 19:00:45 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 455 bytes |
コンパイル時間 | 114 ms |
コンパイル使用メモリ | 20,864 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-18 03:23:51 |
合計ジャッジ時間 | 784 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 0 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 0 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 0 ms
5,248 KB |
testcase_16 | AC | 0 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:5: warning: implicit declaration of function ‘gets’; did you mean ‘fgets’? [-Wimplicit-function-declaration] 7 | gets(num); | ^~~~ | fgets /usr/bin/ld: /tmp/cc1DXvvY.o: in function `main': main.c:(.text.startup+0x23): 警告: the `gets' function is dangerous and should not be used.
ソースコード
#include <stdio.h> int main(void){ int i, j, tmp, idx; char num[10]; gets(num); for(i=0; num[i]; i++){ tmp = num[i]; for(j=i+1; num[j]; j++){ if(num[j] >= tmp) { tmp = num[j]; idx = j; } } if(tmp != num[i]){ num[idx] = num[i]; num[i] = tmp; break; } } printf("%s\n", num); return 0; }