結果

問題 No.543 命題
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-21 00:05:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 3,252 ms
コンパイル使用メモリ 81,476 KB
実行使用メモリ 53,012 KB
最終ジャッジ日時 2024-11-21 10:53:50
合計ジャッジ時間 4,165 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
53,012 KB
testcase_01 AC 80 ms
51,384 KB
testcase_02 AC 83 ms
51,468 KB
testcase_03 AC 82 ms
51,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class No418{
    public static void main(String[] args) throws IOException{
        String[] str = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
        System.out.println(str[1] + " " + str[0]);
    }
}
0