結果

問題 No.5003 物理好きクリッカー
ユーザー keymoonkeymoon
提出日時 2020-12-31 22:26:20
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 68 ms / 10,000 ms
コード長 520 bytes
コンパイル時間 805 ms
実行使用メモリ 32,276 KB
スコア 452,672
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 14:16:49
合計ジャッジ時間 5,594 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
31,800 KB
testcase_01 AC 63 ms
32,156 KB
testcase_02 AC 63 ms
32,048 KB
testcase_03 AC 63 ms
32,000 KB
testcase_04 AC 63 ms
32,008 KB
testcase_05 AC 62 ms
31,932 KB
testcase_06 AC 62 ms
31,748 KB
testcase_07 AC 62 ms
32,180 KB
testcase_08 AC 64 ms
32,132 KB
testcase_09 AC 63 ms
31,784 KB
testcase_10 AC 63 ms
31,892 KB
testcase_11 AC 62 ms
32,040 KB
testcase_12 AC 68 ms
32,084 KB
testcase_13 AC 64 ms
32,148 KB
testcase_14 AC 64 ms
31,928 KB
testcase_15 AC 63 ms
32,120 KB
testcase_16 AC 62 ms
31,816 KB
testcase_17 AC 63 ms
32,056 KB
testcase_18 AC 62 ms
32,160 KB
testcase_19 AC 65 ms
31,900 KB
testcase_20 AC 63 ms
31,792 KB
testcase_21 AC 63 ms
32,124 KB
testcase_22 AC 63 ms
31,972 KB
testcase_23 AC 65 ms
32,084 KB
testcase_24 AC 64 ms
31,840 KB
testcase_25 AC 64 ms
31,752 KB
testcase_26 AC 62 ms
31,748 KB
testcase_27 AC 61 ms
32,076 KB
testcase_28 AC 62 ms
31,860 KB
testcase_29 AC 63 ms
32,008 KB
testcase_30 AC 62 ms
31,960 KB
testcase_31 AC 62 ms
31,728 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.6.0-4.20224.5 (ec77c100)
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());
        var s = Console.ReadLine();
        for (int i = 0; i < n; i++)
        {
            Console.WriteLine("click");
        }
    }
}
0