結果

問題 No.687 E869120 and Constructing Array 1
ユーザー G2G2
提出日時 2018-05-27 02:07:14
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 357 bytes
コンパイル時間 3,390 ms
コンパイル使用メモリ 77,132 KB
実行使用メモリ 42,516 KB
最終ジャッジ日時 2024-06-28 18:20:15
合計ジャッジ時間 5,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
42,244 KB
testcase_01 AC 153 ms
42,408 KB
testcase_02 AC 153 ms
42,396 KB
testcase_03 AC 157 ms
42,320 KB
testcase_04 AC 153 ms
42,352 KB
testcase_05 AC 157 ms
42,344 KB
testcase_06 WA -
testcase_07 AC 153 ms
42,516 KB
testcase_08 AC 141 ms
41,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Random;
public class no687 {
	public static void main(String[] args){
		Scanner s = new Scanner(System.in);
		int num = s.nextInt();
		Random rand = new Random();
		int a = rand.nextInt(num);
		if(a==0){
			a=1;
		}else if(a>10){
			a = rand.nextInt(10)+1;
		}
		int b = num -a;
		System.out.println(a+" "+b);
	}
}
0