結果
問題 | No.543 命題 |
ユーザー | 💕💖💞 |
提出日時 | 2017-07-20 01:50:45 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 254 bytes |
コンパイル時間 | 14,543 ms |
コンパイル使用メモリ | 227,208 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 14:44:27 |
合計ジャッジ時間 | 14,834 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
package mainimport ("bufio""fmt""os""strings")var sc = bufio.NewScanner(os.Stdin)func read() string {sc.Scan()var input = sc.Text()return input}func main() {ii := strings.Split(read(), " ")fmt.Printf("%s %s\n", ii[1], ii[0])}