結果

問題 No.441 和か積
ユーザー hayashi
提出日時 2019-10-08 11:25:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 655 bytes
コンパイル時間 2,735 ms
コンパイル使用メモリ 106,620 KB
実行使用メモリ 25,996 KB
最終ジャッジ日時 2024-11-06 19:35:28
合計ジャッジ時間 4,688 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 algo {
    class Program
    {
        static void Main(string[] args)
        {
            string[] N = Console.ReadLine().Split(' ');

            if (N[0] == "2" && N[1] == "2" || N[0] == "0" && N[1] == "0")
            {
                Console.WriteLine("E");
            }
            else if (N[0] == "0" || N[1] == "0" || N[0] == "1" || N[1] == "1")
            {
                Console.WriteLine("S");
            }
            else
            {
                Console.WriteLine("P");
            }
        }
    }
}
0