結果

問題 No.3060 サンプルケース至上主義
ユーザー keymoonkeymoon
提出日時 2020-04-01 21:48:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 1,002 bytes
コンパイル時間 1,871 ms
コンパイル使用メモリ 100,312 KB
実行使用メモリ 23,500 KB
最終ジャッジ日時 2023-09-09 17:45:30
合計ジャッジ時間 2,810 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
20,432 KB
testcase_01 AC 70 ms
21,416 KB
testcase_02 AC 71 ms
23,364 KB
testcase_03 AC 70 ms
21,372 KB
testcase_04 AC 72 ms
23,500 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 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 MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;


public static class P
{
    static void Main()
    {
        var s = Console.ReadLine();
        if (s == "0") Console.WriteLine("Nothing");
        else if (s.StartsWith("3.1")) Console.WriteLine("pi");
        else if (s.StartsWith("111234"))
        {
            Console.WriteLine("九蓮宝燈");
            Console.WriteLine("Thirteen Orphans");
        }
        else if (s.StartsWith("All your base"))
        {
            Console.WriteLine(@"3
4
4
3
6
2
2");
        }
        else if (s.StartsWith("くぁ"))
        {
            Console.WriteLine("さmpぇ");
        }
    }
}
0