結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
42,204 KB
testcase_01 AC 152 ms
42,284 KB
testcase_02 AC 152 ms
42,432 KB
testcase_03 AC 157 ms
42,400 KB
testcase_04 AC 156 ms
42,380 KB
testcase_05 AC 142 ms
41,768 KB
testcase_06 AC 150 ms
42,368 KB
testcase_07 AC 158 ms
42,128 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
		}
		int b = num -a;
		System.out.println(a+" "+b);
	}
}
0