結果
| 問題 |
No.892 タピオカ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-13 17:46:34 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 1,000 ms |
| コード長 | 519 bytes |
| コンパイル時間 | 946 ms |
| コンパイル使用メモリ | 111,104 KB |
| 実行使用メモリ | 17,920 KB |
| 最終ジャッジ日時 | 2024-06-25 15:56:39 |
| 合計ジャッジ時間 | 1,780 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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 ? ":-)" : ":-(");
}
}
}