結果

問題 No.1114 足し算盆に返らず
ユーザー keymoonkeymoon
提出日時 2021-01-15 01:11:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 2,483 ms
コンパイル使用メモリ 105,324 KB
実行使用メモリ 24,248 KB
最終ジャッジ日時 2023-08-16 09:07:56
合計ジャッジ時間 10,487 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
22,232 KB
testcase_01 AC 71 ms
22,120 KB
testcase_02 AC 70 ms
22,244 KB
testcase_03 AC 69 ms
23,972 KB
testcase_04 AC 70 ms
24,172 KB
testcase_05 AC 66 ms
21,648 KB
testcase_06 AC 71 ms
24,220 KB
testcase_07 AC 70 ms
22,144 KB
testcase_08 AC 68 ms
21,800 KB
testcase_09 AC 66 ms
23,632 KB
testcase_10 AC 67 ms
21,692 KB
testcase_11 AC 61 ms
21,612 KB
testcase_12 AC 70 ms
21,832 KB
testcase_13 AC 71 ms
24,232 KB
testcase_14 AC 62 ms
21,528 KB
testcase_15 AC 65 ms
19,700 KB
testcase_16 AC 66 ms
21,568 KB
testcase_17 AC 68 ms
21,840 KB
testcase_18 AC 65 ms
21,568 KB
testcase_19 AC 66 ms
23,692 KB
testcase_20 AC 72 ms
24,248 KB
testcase_21 AC 65 ms
23,576 KB
testcase_22 AC 60 ms
21,588 KB
testcase_23 AC 60 ms
21,764 KB
testcase_24 AC 60 ms
21,576 KB
testcase_25 AC 60 ms
23,640 KB
testcase_26 AC 61 ms
21,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        Console.WriteLine(string.Join(" ", Enumerable.Range(1, n).Where(x => x % 2 == 1)));
    }
}
0