結果

問題 No.304 鍵(1)
ユーザー AreTrashAreTrash
提出日時 2016-04-20 12:28:50
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 159 bytes
コンパイル時間 2,512 ms
コンパイル使用メモリ 98,904 KB
実行使用メモリ 56,528 KB
最終ジャッジ日時 2023-09-23 23:48:52
合計ジャッジ時間 8,644 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Program{
    public static void Main(string[] args){
        var i = 0;
        while(true) Console.WriteLine($"{i++:D3}");
    }
}
0