結果

問題 No.892 タピオカ
ユーザー curryudon08curryudon08
提出日時 2020-06-13 17:46:34
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 519 bytes
コンパイル時間 1,931 ms
コンパイル使用メモリ 102,168 KB
実行使用メモリ 20,892 KB
最終ジャッジ日時 2023-09-07 22:20:24
合計ジャッジ時間 3,231 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
20,892 KB
testcase_01 AC 53 ms
20,732 KB
testcase_02 AC 53 ms
20,788 KB
testcase_03 AC 54 ms
20,784 KB
testcase_04 AC 54 ms
20,688 KB
testcase_05 AC 53 ms
20,804 KB
testcase_06 AC 53 ms
18,812 KB
testcase_07 AC 52 ms
20,836 KB
testcase_08 AC 57 ms
20,828 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.Numerics;

namespace _0892
{
    class Program
    {
        static void Main(string[] args)
        {
            var _ = Console.ReadLine().Split();

            var a1 = int.Parse(_[0]);
            var b1 = int.Parse(_[1]);
            var a2 = int.Parse(_[2]);
            var b2 = int.Parse(_[3]);
            var a3 = int.Parse(_[4]);
            var b3 = int.Parse(_[5]);

            var s = a1 + a2 + a3;
            Console.WriteLine(s % 2 == 0 ? ":-)" : ":-(");
        }
    }
}
0