結果
| 問題 |
No.400 鏡
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-03-06 15:32:12 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 190 bytes |
| コンパイル時間 | 227 ms |
| コンパイル使用メモリ | 23,168 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-14 02:52:00 |
| 合計ジャッジ時間 | 749 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 8 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | scanf("%s",S);
| ~~~~~^~~~~~~~
ソースコード
#include <cstdio>
#include <cstring>
int main(){
char S[21];
scanf("%s",S);
for(int p=strlen(S)-1;p>=0;p--){
printf("%c",'<'+'>'-S[p]);
}printf("\n");
return 0;
}