結果

問題 No.1114 足し算盆に返らず
ユーザー 遭難者遭難者
提出日時 2020-10-13 12:06:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 73,928 KB
実行使用メモリ 44,016 KB
最終ジャッジ日時 2024-07-20 18:25:35
合計ジャッジ時間 21,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
43,244 KB
testcase_01 AC 171 ms
44,008 KB
testcase_02 AC 181 ms
44,016 KB
testcase_03 AC 185 ms
43,672 KB
testcase_04 AC 167 ms
43,740 KB
testcase_05 AC 156 ms
42,344 KB
testcase_06 AC 173 ms
43,832 KB
testcase_07 AC 168 ms
43,676 KB
testcase_08 AC 149 ms
43,068 KB
testcase_09 AC 159 ms
42,700 KB
testcase_10 AC 181 ms
42,836 KB
testcase_11 AC 168 ms
41,600 KB
testcase_12 AC 165 ms
42,600 KB
testcase_13 AC 176 ms
43,916 KB
testcase_14 AC 142 ms
41,584 KB
testcase_15 AC 153 ms
42,108 KB
testcase_16 AC 163 ms
42,792 KB
testcase_17 AC 176 ms
43,280 KB
testcase_18 AC 148 ms
42,444 KB
testcase_19 AC 162 ms
41,992 KB
testcase_20 AC 186 ms
43,872 KB
testcase_21 AC 149 ms
42,124 KB
testcase_22 AC 99 ms
39,716 KB
testcase_23 AC 107 ms
40,804 KB
testcase_24 AC 111 ms
41,100 KB
testcase_25 AC 96 ms
39,744 KB
testcase_26 AC 107 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int n = Integer.parseInt(sc.next());
		for(int i = 1 ; i <= n ; i++){
			if(i % 2 == 1){
				ou.print(i);
				if(i < n - 1) ou.print(" ");
			}
		}
		ou.println();
		ou.flush();
		sc.close();
	}
}
0