結果

問題 No.841 8/32
ユーザー Kaz_nlKaz_nl
提出日時 2019-11-04 06:36:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 1,156 ms
コンパイル使用メモリ 109,212 KB
実行使用メモリ 25,740 KB
最終ジャッジ日時 2024-09-14 23:36:42
合計ジャッジ時間 2,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,656 KB
testcase_01 AC 25 ms
23,536 KB
testcase_02 AC 25 ms
25,572 KB
testcase_03 AC 25 ms
23,472 KB
testcase_04 AC 25 ms
23,912 KB
testcase_05 AC 25 ms
23,528 KB
testcase_06 AC 25 ms
23,600 KB
testcase_07 AC 25 ms
23,664 KB
testcase_08 AC 24 ms
23,396 KB
testcase_09 AC 25 ms
25,492 KB
testcase_10 AC 26 ms
25,496 KB
testcase_11 AC 25 ms
23,788 KB
testcase_12 AC 25 ms
23,532 KB
testcase_13 AC 25 ms
25,692 KB
testcase_14 AC 25 ms
23,656 KB
testcase_15 AC 25 ms
25,740 KB
testcase_16 AC 25 ms
23,528 KB
testcase_17 AC 25 ms
25,612 KB
testcase_18 AC 25 ms
23,340 KB
testcase_19 AC 25 ms
25,620 KB
testcase_20 AC 25 ms
23,692 KB
testcase_21 AC 24 ms
23,404 KB
testcase_22 AC 24 ms
23,348 KB
testcase_23 AC 25 ms
25,620 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.Linq;

class Program
{
    static void Main()
    {
        var a = Console.ReadLine().Split();
        if (a[0] == "Sat" || a[0] == "Sun")
        {
            if(a[1] == "Sat" || a[1] == "Sun")
            {
                Console.WriteLine("8/33");
            }
            else
            {
                Console.WriteLine("8/32");
            }
        }
        else
        {
            Console.WriteLine("8/31");
        }
    }
}
0