結果

問題 No.5000 特殊ジャッジテスト(テスト用)
ユーザー yagi2yagi2
提出日時 2017-04-21 17:06:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 326 bytes
コンパイル時間 2,636 ms
実行使用メモリ 24,588 KB
スコア 2,696
最終ジャッジ日時 2018-03-12 00:03:55
ジャッジサーバーID
(参考情報)
judge7 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
23,864 KB
testcase_01 AC 109 ms
24,588 KB
testcase_02 AC 112 ms
23,868 KB
testcase_03 AC 113 ms
24,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());

        if (N != 1) { 
            System.out.println(N + " 0");
        } else {
            System.out.println("0 " + N);
        }
    }
}
0