結果
| 問題 | No.400 鏡 |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-07 17:57:24 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 202 bytes |
| 記録 | |
| コンパイル時間 | 138 ms |
| コンパイル使用メモリ | 37,088 KB |
| 最終ジャッジ日時 | 2026-02-22 13:05:56 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 4 |
| other | RE * 8 |
ソースコード
#include <stdio.h>
#include <string.h>
void main(void){
char str[100];
scanf("%s",str);
for(int i = strlen(str)-1; i < 0; i--){
if(str[i] == '<'){
printf(">");
}else{
printf("<");
}
}
}
Maeda