結果
| 問題 |
No.400 鏡
|
| コンテスト | |
| ユーザー |
Eclair1015
|
| 提出日時 | 2018-05-08 22:59:01 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 257 bytes |
| コンパイル時間 | 1,088 ms |
| コンパイル使用メモリ | 28,416 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 02:33:38 |
| 合計ジャッジ時間 | 1,620 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 4 WA * 4 |
ソースコード
#include<stdio.h>
#include<string.h>
int main(){
char string[20];
int i;
fgets(string,20,stdin);
for(i=strlen(string);i>=0;i--){
switch(string[i]){
case '>':
printf("<");
break;
case '<':
printf(">");
break;
}
}
return 0;
}
Eclair1015