結果
問題 | No.400 鏡 |
ユーザー |
![]() |
提出日時 | 2019-09-23 09:42:23 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 212 bytes |
コンパイル時間 | 13,514 ms |
コンパイル使用メモリ | 221,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 04:13:02 |
合計ジャッジ時間 | 12,921 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 8 |
ソースコード
package mainimport "fmt"func main() {var s stringfmt.Scan(&s)for i := len(s) - 1; i >= 0; i-- {if s[i] == '<' {fmt.Print(string('>'))} else {fmt.Print(string('<'))}}fmt.Println()}