結果

問題 No.1114 足し算盆に返らず
ユーザー RISE70226821RISE70226821
提出日時 2020-08-04 09:57:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 2,785 ms
コンパイル使用メモリ 75,920 KB
実行使用メモリ 53,680 KB
最終ジャッジ日時 2024-09-14 07:39:50
合計ジャッジ時間 30,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 490 ms
52,724 KB
testcase_01 AC 494 ms
53,020 KB
testcase_02 AC 493 ms
53,072 KB
testcase_03 AC 437 ms
52,552 KB
testcase_04 AC 486 ms
52,704 KB
testcase_05 AC 386 ms
51,232 KB
testcase_06 AC 481 ms
52,760 KB
testcase_07 AC 487 ms
53,096 KB
testcase_08 AC 412 ms
52,368 KB
testcase_09 AC 391 ms
51,296 KB
testcase_10 AC 407 ms
52,496 KB
testcase_11 AC 220 ms
42,000 KB
testcase_12 AC 419 ms
52,228 KB
testcase_13 AC 495 ms
52,992 KB
testcase_14 AC 287 ms
45,740 KB
testcase_15 AC 353 ms
50,064 KB
testcase_16 AC 391 ms
51,464 KB
testcase_17 AC 437 ms
52,244 KB
testcase_18 AC 327 ms
50,152 KB
testcase_19 AC 355 ms
50,664 KB
testcase_20 AC 486 ms
53,680 KB
testcase_21 AC 351 ms
50,328 KB
testcase_22 AC 143 ms
41,184 KB
testcase_23 AC 137 ms
40,496 KB
testcase_24 AC 146 ms
41,552 KB
testcase_25 AC 148 ms
41,316 KB
testcase_26 AC 149 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		
		// 算出
		int start = 0;
		int end = 0;
		if(N % 2 == 0){
			start = N / 2;
			end = N - 1; 
		}else{
			start = N / 2 + 1;
			end = N;
		}
		
		// 出力
		for(int i = start; i <= end; i++){
			System.out.print(i + " ");
		}
		System.out.println("");
	}
}
0