結果

問題 No.441 和か積
ユーザー AreTrashAreTrash
提出日時 2016-11-11 23:46:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 1,000 ms
コード長 418 bytes
コンパイル時間 1,607 ms
コンパイル使用メモリ 111,064 KB
実行使用メモリ 26,744 KB
最終ジャッジ日時 2024-06-27 03:32:26
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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.Linq;

namespace No441{
    public class Program{
        public static void Main(string[] args){
            var input = Console.ReadLine().Split();
            var res = 0;
            if(input.Any(s => s == "0") || input.Any(s => s == "1")) res = 1;
            if(input.All(s => s == "0") || input.All(s => s == "2")) res = 2;
            Console.WriteLine("PSE"[res]);
        }
    }
}
0