結果

問題 No.780 オフ会
ユーザー funakoshifunakoshi
提出日時 2019-07-01 17:45:15
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 823 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 111,076 KB
実行使用メモリ 28,052 KB
最終ジャッジ日時 2024-07-17 23:09:41
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,868 KB
testcase_01 AC 22 ms
26,020 KB
testcase_02 AC 22 ms
24,088 KB
testcase_03 AC 22 ms
23,840 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 21 ms
24,216 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 21 ms
26,004 KB
testcase_10 AC 21 ms
24,092 KB
testcase_11 WA -
testcase_12 AC 22 ms
23,904 KB
testcase_13 AC 22 ms
23,892 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 23 ms
25,808 KB
testcase_17 AC 23 ms
21,936 KB
testcase_18 WA -
testcase_19 AC 23 ms
23,728 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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(' ');
            int boy = int.Parse(str[0])+1;
            int girl = int.Parse(str[1]);
            int amari = girl - boy;
            if(amari==0)
            {
                Console.WriteLine("YES");
                Console.WriteLine(amari);
            }
            else if(amari>0)
            {
                Console.WriteLine("NO");
                Console.WriteLine(amari);
            }
            else 
            {
                Console.WriteLine("NO");
                Console.WriteLine(amari*-1);
            }
        }
    }
}
0