結果

問題 No.687 E869120 and Constructing Array 1
ユーザー YOSHIYOSHI
提出日時 2021-06-19 12:50:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 73 ms / 1,000 ms
コード長 369 bytes
コンパイル時間 4,430 ms
コンパイル使用メモリ 73,512 KB
実行使用メモリ 52,160 KB
最終ジャッジ日時 2023-09-05 00:46:32
合計ジャッジ時間 6,259 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
50,928 KB
testcase_01 AC 73 ms
52,068 KB
testcase_02 AC 71 ms
51,756 KB
testcase_03 AC 72 ms
50,752 KB
testcase_04 AC 71 ms
50,656 KB
testcase_05 AC 73 ms
51,224 KB
testcase_06 AC 73 ms
52,160 KB
testcase_07 AC 71 ms
50,804 KB
testcase_08 AC 72 ms
50,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000687_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		int n = Integer.parseInt(br.readLine());
		System.out.println((n / 2) + " " +  (n - (n / 2)));
	}
}
0