結果
| 問題 |
No.400 鏡
|
| コンテスト | |
| ユーザー |
asdfghjkl;
|
| 提出日時 | 2020-03-09 20:53:31 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 198 bytes |
| コンパイル時間 | 171 ms |
| コンパイル使用メモリ | 28,800 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-14 06:44:35 |
| 合計ジャッジ時間 | 799 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 8 |
ソースコード
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main(void){
char s[50];
scanf("%s",s);
for(int i=strlen(s)-1;i>=0;i--){
if(s[i]=='>'){printf("<");}
else{printf(">");}
}
printf("\n");
}
asdfghjkl;