結果

問題 No.5000 特殊ジャッジテスト(テスト用)
ユーザー KinaKina
提出日時 2015-07-12 10:06:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 181 bytes
コンパイル時間 2,460 ms
実行使用メモリ 24,592 KB
スコア 3,276
最終ジャッジ日時 2018-03-12 00:01:47
ジャッジサーバーID
(参考情報)
judge7 /
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;
public class Main {
	public static void main(String... args) {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		System.out.println(2+" "+(N-2));
	}
}
0