結果
問題 | No.400 鏡 |
ユーザー | extelo |
提出日時 | 2016-08-18 20:56:55 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 656 bytes |
コンパイル時間 | 262 ms |
コンパイル使用メモリ | 21,120 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 19:32:37 |
合計ジャッジ時間 | 745 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
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 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:42:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%c", &c); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> void hanten(char str[], int i) { int e,j; char c; e = i/2; i= i-1; for(j=0;j<e;j++){ c = str[j]; str[j] = str[i]; str[i] = c; i--; } } void change(char str[]) { int i; for(i=0;i<20;i++){ if(str[i] == '\0'){ break; } else if(str[i] == '>'){ str[i] = '<'; } else if(str[i] == '<'){ str[i] = '>'; } } } int main(void) { int i; char c, str[20]; for(i=0;i<10;i++){ scanf("%c", &c); if(c == '\n'){ str[i] = '\0'; break; } else { str[i] = c; } } hanten(str, i); change(str); printf("%s\n", str); return 0; }