結果

問題 No.131 マンハッタン距離
ユーザー mbanmban
提出日時 2017-01-12 14:39:33
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,489 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 111,656 KB
実行使用メモリ 26,400 KB
最終ジャッジ日時 2024-06-01 06:24:22
合計ジャッジ時間 2,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,288 KB
testcase_01 WA -
testcase_02 AC 26 ms
24,088 KB
testcase_03 AC 26 ms
26,128 KB
testcase_04 AC 26 ms
26,140 KB
testcase_05 AC 27 ms
26,228 KB
testcase_06 AC 27 ms
25,820 KB
testcase_07 AC 26 ms
24,108 KB
testcase_08 AC 27 ms
25,944 KB
testcase_09 WA -
testcase_10 AC 26 ms
24,036 KB
testcase_11 AC 26 ms
22,072 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 26 ms
24,164 KB
testcase_15 AC 26 ms
26,128 KB
testcase_16 AC 26 ms
24,084 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 27 ms
25,944 KB
testcase_22 AC 25 ms
26,132 KB
testcase_23 AC 27 ms
26,400 KB
testcase_24 WA -
testcase_25 AC 25 ms
23,900 KB
testcase_26 AC 26 ms
24,164 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.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static private Magatro M = new Magatro();
    static private void Main(string[]args)
    {
        M.Scan();
        M.Solve();
    }
}

public class Scanner
{
    private string[] S;
    private int Index;
    private char Separator;

    public Scanner(char separator = ' ')
    {
        Index = 0;
        Separator = separator;
    }

    private string[] Line()
    {
        return Console.ReadLine().Split(Separator);
    }

    public string Next()
    {
        string result;
        if (S == null || Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
}

public class Magatro
{
    private int x, y, d;
    public void Scan()
    {
        Scanner sc = new Scanner();
        x = sc.NextInt();
        y = sc.NextInt();
        d = sc.NextInt();
    }
    public void Solve()
    {
        int ans = d+1;
        ans -= d - x;
        ans -= d - y;
        if (ans < 0) ans = 0;
        Console.WriteLine(ans);
    }
}
0