結果

問題 No.687 E869120 and Constructing Array 1
ユーザー tentententen
提出日時 2020-09-03 19:48:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 3,571 ms
コンパイル使用メモリ 85,460 KB
実行使用メモリ 42,556 KB
最終ジャッジ日時 2024-11-23 23:21:03
合計ジャッジ時間 5,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,132 KB
testcase_01 AC 156 ms
42,416 KB
testcase_02 AC 158 ms
42,108 KB
testcase_03 AC 152 ms
42,200 KB
testcase_04 AC 154 ms
42,360 KB
testcase_05 AC 164 ms
42,556 KB
testcase_06 AC 154 ms
42,304 KB
testcase_07 AC 155 ms
42,224 KB
testcase_08 AC 156 ms
42,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int first = n / 2;
    	System.out.println(first + " " + (n - first));
	}
}
0