結果

問題 No.1366 交換門松列・梅
ユーザー bluemeganebluemegane
提出日時 2021-01-30 07:06:46
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 1,000 ms
コード長 994 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 112,344 KB
実行使用メモリ 26,016 KB
最終ジャッジ日時 2024-12-16 13:18:12
合計ジャッジ時間 1,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,844 KB
testcase_01 AC 24 ms
23,660 KB
testcase_02 AC 23 ms
23,844 KB
testcase_03 AC 23 ms
23,916 KB
testcase_04 AC 22 ms
23,840 KB
testcase_05 AC 23 ms
25,828 KB
testcase_06 AC 23 ms
23,984 KB
testcase_07 AC 23 ms
24,108 KB
testcase_08 AC 24 ms
23,860 KB
testcase_09 AC 23 ms
23,984 KB
testcase_10 AC 24 ms
24,108 KB
testcase_11 AC 22 ms
26,016 KB
testcase_12 AC 22 ms
24,116 KB
testcase_13 AC 21 ms
23,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static int[] a, b;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        a = Array.ConvertAll(line, int.Parse);
        line = Console.ReadLine().Trim().Split(' ');
        b = Array.ConvertAll(line, int.Parse);
        getAns();
    }
    static void getAns()
    {
        for (int i = 0; i < 3; i++)
            for (int j = 0; j < 3; j++)
            {
                swap(i, j);
                if (check(a) && check(b)) { Console.WriteLine("Yes"); return; }
                swap(i, j);
            }
        Console.WriteLine("No");
    }
    static void swap(int i, int j)
    {
        var w = a[i];
        a[i] = b[j];
        b[j] = w;
    }
    static bool check(int[] a)
    {
        if (!(a[0] != a[1] && a[1] != a[2] && a[0] != a[2])) return false;
        if (a[1] > a[0] && a[1] > a[2]) return true;
        if (a[1] < a[0] && a[1] < a[2]) return true;
        return false;
    }
}
0