結果

問題 No.687 E869120 and Constructing Array 1
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-05-18 22:21:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 233 bytes
コンパイル時間 2,646 ms
コンパイル使用メモリ 76,528 KB
実行使用メモリ 42,512 KB
最終ジャッジ日時 2024-06-28 13:49:31
合計ジャッジ時間 4,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
42,312 KB
testcase_01 AC 139 ms
41,920 KB
testcase_02 AC 156 ms
42,140 KB
testcase_03 AC 155 ms
42,340 KB
testcase_04 AC 153 ms
42,108 KB
testcase_05 AC 151 ms
42,380 KB
testcase_06 AC 153 ms
42,432 KB
testcase_07 AC 164 ms
42,512 KB
testcase_08 AC 154 ms
42,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;
import java.util.*;

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