結果

問題 No.1837 Same but Different
ユーザー kakel-sankakel-san
提出日時 2022-02-11 22:19:29
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 875 bytes
コンパイル時間 4,735 ms
コンパイル使用メモリ 104,448 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-06-27 19:36:11
合計ジャッジ時間 3,823 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,664 KB
testcase_01 AC 23 ms
17,664 KB
testcase_02 WA -
testcase_03 AC 24 ms
17,408 KB
testcase_04 WA -
testcase_05 AC 25 ms
17,784 KB
testcase_06 AC 25 ms
17,784 KB
testcase_07 WA -
testcase_08 AC 25 ms
17,864 KB
testcase_09 AC 25 ms
17,660 KB
testcase_10 WA -
testcase_11 AC 25 ms
17,788 KB
testcase_12 AC 25 ms
17,920 KB
testcase_13 WA -
testcase_14 AC 25 ms
17,660 KB
testcase_15 AC 25 ms
17,920 KB
testcase_16 WA -
testcase_17 AC 25 ms
17,792 KB
testcase_18 AC 24 ms
17,920 KB
testcase_19 AC 24 ms
17,920 KB
testcase_20 WA -
testcase_21 AC 24 ms
17,792 KB
testcase_22 WA -
testcase_23 AC 25 ms
17,792 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static void Main()
    {
        var n = NN;
        var a = new int[n];
        var b = new int[n];
        for (var i = 0; i < n; ++i)
        {
            a[i] = 3 * i;
            b[i] = 3 * i + 1;
        }
        var rest = n;
        for (var i = n - 1; i >= 0; --i)
        {
            if (rest < 3) break;
            a[i] += 3;
            rest -= 3;
        }
        for (var i = n - 1; i >= 0; --i)
        {
            if (rest == 0) break;
            a[i] += 1;
            rest -= 1;
        }
        WriteLine(string.Join(" ", a));
        WriteLine(string.Join(" ", b));
    }
}
0