結果

問題 No.2819 Binary Binary-Operator
ユーザー 👑 kakel-sankakel-san
提出日時 2024-07-26 21:48:40
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 16,939 ms
コンパイル使用メモリ 169,060 KB
実行使用メモリ 48,088 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-26 21:49:09
合計ジャッジ時間 26,131 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
47,832 KB
testcase_01 AC 87 ms
47,576 KB
testcase_02 AC 83 ms
47,576 KB
testcase_03 AC 84 ms
47,576 KB
testcase_04 AC 87 ms
47,600 KB
testcase_05 AC 90 ms
47,304 KB
testcase_06 AC 82 ms
48,088 KB
testcase_07 AC 79 ms
47,704 KB
testcase_08 AC 79 ms
47,832 KB
testcase_09 AC 82 ms
47,064 KB
testcase_10 AC 82 ms
47,960 KB
testcase_11 AC 81 ms
47,576 KB
testcase_12 AC 79 ms
47,192 KB
testcase_13 AC 89 ms
48,088 KB
testcase_14 AC 80 ms
48,076 KB
testcase_15 AC 79 ms
47,192 KB
testcase_16 AC 79 ms
47,432 KB
testcase_17 AC 83 ms
47,576 KB
testcase_18 AC 79 ms
46,920 KB
testcase_19 AC 80 ms
47,704 KB
testcase_20 AC 79 ms
47,812 KB
testcase_21 AC 81 ms
47,832 KB
testcase_22 AC 82 ms
47,576 KB
testcase_23 AC 87 ms
47,576 KB
testcase_24 AC 80 ms
47,320 KB
testcase_25 AC 81 ms
47,576 KB
testcase_26 AC 81 ms
47,192 KB
testcase_27 AC 80 ms
47,832 KB
testcase_28 AC 80 ms
47,320 KB
testcase_29 AC 80 ms
47,832 KB
testcase_30 AC 80 ms
47,320 KB
testcase_31 AC 80 ms
47,608 KB
testcase_32 AC 80 ms
47,352 KB
testcase_33 AC 86 ms
47,576 KB
testcase_34 AC 82 ms
47,704 KB
testcase_35 AC 80 ms
47,320 KB
testcase_36 AC 81 ms
47,064 KB
testcase_37 AC 81 ms
47,232 KB
testcase_38 AC 80 ms
47,576 KB
testcase_39 AC 80 ms
47,192 KB
testcase_40 AC 80 ms
47,704 KB
testcase_41 AC 81 ms
47,532 KB
testcase_42 AC 80 ms
47,840 KB
testcase_43 AC 82 ms
47,448 KB
testcase_44 AC 87 ms
47,576 KB
testcase_45 AC 83 ms
47,448 KB
testcase_46 AC 81 ms
47,704 KB
testcase_47 AC 81 ms
47,816 KB
testcase_48 AC 82 ms
47,704 KB
testcase_49 AC 81 ms
47,576 KB
testcase_50 AC 80 ms
47,576 KB
testcase_51 AC 82 ms
47,960 KB
testcase_52 AC 78 ms
47,448 KB
testcase_53 AC 81 ms
47,576 KB
testcase_54 AC 80 ms
47,448 KB
testcase_55 AC 89 ms
47,576 KB
testcase_56 AC 81 ms
47,192 KB
testcase_57 AC 81 ms
47,576 KB
testcase_58 AC 80 ms
47,448 KB
testcase_59 AC 81 ms
47,576 KB
testcase_60 AC 80 ms
47,056 KB
testcase_61 AC 81 ms
47,564 KB
testcase_62 AC 81 ms
47,560 KB
testcase_63 AC 81 ms
47,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var v = new int[4];
        v[0] = c[0];
        for (var i = 1; i < 4; ++i) v[i] = c[1];
        WriteLine(4);
        WriteLine(string.Join(" ", v));
        var t = NN;
        WriteLine(t);
    }
}
0