結果

問題 No.1616 Joke
ユーザー 👑 kakel-sankakel-san
提出日時 2021-07-22 21:23:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 65,680 KB
実行使用メモリ 22,672 KB
最終ジャッジ日時 2023-09-24 15:25:42
合計ジャッジ時間 4,163 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
20,628 KB
testcase_01 AC 54 ms
22,604 KB
testcase_02 AC 53 ms
22,672 KB
testcase_03 AC 55 ms
20,712 KB
testcase_04 AC 53 ms
20,504 KB
testcase_05 AC 54 ms
22,588 KB
testcase_06 AC 53 ms
20,592 KB
testcase_07 AC 54 ms
20,568 KB
testcase_08 AC 54 ms
22,544 KB
testcase_09 AC 54 ms
20,596 KB
testcase_10 AC 55 ms
20,592 KB
testcase_11 AC 53 ms
20,552 KB
testcase_12 AC 54 ms
20,576 KB
testcase_13 AC 54 ms
20,740 KB
testcase_14 AC 54 ms
22,608 KB
testcase_15 AC 54 ms
20,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class yuki1
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var n = NN;
        WriteLine(n);
    }
}
0