結果

問題 No.687 E869120 and Constructing Array 1
ユーザー GodNegotoGodNegoto
提出日時 2019-11-26 17:43:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 329 bytes
コンパイル時間 3,735 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-11-06 23:42:48
合計ジャッジ時間 5,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,052 KB
testcase_01 AC 134 ms
41,152 KB
testcase_02 AC 135 ms
41,144 KB
testcase_03 AC 131 ms
41,032 KB
testcase_04 AC 119 ms
40,028 KB
testcase_05 AC 136 ms
41,292 KB
testcase_06 AC 141 ms
41,296 KB
testcase_07 AC 135 ms
41,072 KB
testcase_08 AC 134 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.ArrayList;
import java.util.Scanner;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int a = n / 2;
		int b = n - a;
		System.out.print(a);
		System.out.print(" ");
		System.out.print(b);
	}
}
0