結果

問題 No.841 8/32
ユーザー funakoshifunakoshi
提出日時 2019-07-01 17:24:19
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 1,702 ms
コンパイル使用メモリ 107,556 KB
実行使用メモリ 25,860 KB
最終ジャッジ日時 2024-07-17 22:16:54
合計ジャッジ時間 1,930 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,736 KB
testcase_01 AC 21 ms
21,684 KB
testcase_02 AC 22 ms
21,556 KB
testcase_03 AC 22 ms
25,472 KB
testcase_04 AC 22 ms
25,684 KB
testcase_05 AC 21 ms
21,300 KB
testcase_06 AC 22 ms
23,564 KB
testcase_07 AC 22 ms
23,636 KB
testcase_08 AC 23 ms
23,600 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 22 ms
23,640 KB
testcase_12 AC 23 ms
25,424 KB
testcase_13 AC 23 ms
23,476 KB
testcase_14 AC 22 ms
23,644 KB
testcase_15 AC 23 ms
25,476 KB
testcase_16 AC 23 ms
23,644 KB
testcase_17 WA -
testcase_18 AC 21 ms
23,896 KB
testcase_19 AC 22 ms
23,540 KB
testcase_20 AC 22 ms
23,508 KB
testcase_21 AC 23 ms
25,720 KB
testcase_22 AC 23 ms
23,764 KB
testcase_23 AC 22 ms
23,508 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.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yukicoderTest
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] str = Console.ReadLine().Split(' ');
            if(str[0]=="Sat"||str[0]=="Sun"&& str[1] == "Sat" || str[1]=="Sun")
            {
                Console.WriteLine("8/33");
            }
            else if(str[0] == "Sat" || str[0] == "Sun")
            {
                Console.WriteLine("8/32");
            }
            else
            {
                Console.WriteLine("8/31");
            }
        }
    }
}
0