結果

問題 No.687 E869120 and Constructing Array 1
ユーザー youthfuldays072youthfuldays072
提出日時 2018-06-22 17:39:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 1,000 ms
コード長 331 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 76,264 KB
実行使用メモリ 55,096 KB
最終ジャッジ日時 2024-06-30 18:02:12
合計ジャッジ時間 4,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,896 KB
testcase_01 AC 158 ms
54,932 KB
testcase_02 AC 155 ms
54,904 KB
testcase_03 AC 155 ms
54,944 KB
testcase_04 AC 159 ms
55,012 KB
testcase_05 AC 156 ms
54,972 KB
testcase_06 AC 155 ms
54,856 KB
testcase_07 AC 156 ms
54,844 KB
testcase_08 AC 156 ms
55,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		Main main=new Main();
		main.run();
	}

	void run() {

		Scanner sc=new Scanner(System.in);

		int N=sc.nextInt();

		for(int i=10;i>=1;i--) {

			int buf=N-i;

			if(buf>0) {
				System.out.println(buf+" "+i);
				return;
			}

		}
	}
}


0