結果

問題 No.1366 交換門松列・梅
ユーザー kakel-sankakel-san
提出日時 2024-07-30 21:03:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 1,000 ms
コード長 972 bytes
コンパイル時間 1,187 ms
コンパイル使用メモリ 114,688 KB
実行使用メモリ 27,264 KB
最終ジャッジ日時 2024-12-16 13:22:34
合計ジャッジ時間 2,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,216 KB
testcase_01 AC 27 ms
23,088 KB
testcase_02 AC 28 ms
25,216 KB
testcase_03 AC 29 ms
27,264 KB
testcase_04 AC 29 ms
24,736 KB
testcase_05 AC 29 ms
24,956 KB
testcase_06 AC 29 ms
25,204 KB
testcase_07 AC 29 ms
26,988 KB
testcase_08 AC 29 ms
25,116 KB
testcase_09 AC 29 ms
25,136 KB
testcase_10 AC 30 ms
25,008 KB
testcase_11 AC 29 ms
25,372 KB
testcase_12 AC 28 ms
24,952 KB
testcase_13 AC 28 ms
27,252 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var a = NList;
        var b = NList;
        for (var i = 0; i < 3; ++i) for (var j = 0; j < 3; ++j)
        {
            (a[i], b[j]) = (b[j], a[i]);
            if (IsKadomatsu(a) && IsKadomatsu(b))
            {
                WriteLine("Yes");
                return;
            }
            (a[i], b[j]) = (b[j], a[i]);
        }
        WriteLine("No");
    }
    static bool IsKadomatsu(int[] a)
    {
        return a[0] != a[2] && ((a[0] < a[1] && a[1] > a[2]) || (a[0] > a[1] && a[1] < a[2]));
    }
}
0