結果

問題 No.543 命題
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-21 00:05:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 3,571 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 40,168 KB
最終ジャッジ日時 2024-05-01 08:00:13
合計ジャッジ時間 4,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
39,908 KB
testcase_01 AC 78 ms
38,428 KB
testcase_02 AC 81 ms
38,156 KB
testcase_03 AC 85 ms
40,168 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