結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー NoNo
提出日時 2018-04-28 01:25:41
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,454 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 100,320 KB
実行使用メモリ 31,536 KB
最終ジャッジ日時 2023-09-10 07:39:09
合計ジャッジ時間 4,105 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 58 ms
22,884 KB
testcase_04 AC 67 ms
20,808 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 64 ms
27,220 KB
testcase_12 AC 64 ms
29,452 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 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;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            var ss = Console.ReadLine().Split();
            int n = int.Parse(ss[0]);
            int lb = int.Parse(ss[1]);
            int rb = int.Parse(ss[2]);

            var m = new int[1280, 1680];

            for (int i = 1; i <= n; i++)
            {
                ss = Console.ReadLine().Split();
                var xl = int.Parse(ss[0]);
                var yu = int.Parse(ss[1]);
                var xr = int.Parse(ss[2]);
                var yd = int.Parse(ss[3]);

                if (xl < 1) xl = 1;
                if (xr > 1280) xr = 1280;
                if (yu < 1) yu = 1;
                if (yd > 1680) yd = 1680;

                for (int j = xl - 1; j <= xr - 1; j++)
                {
                      m[j, yu - 1] = i;
                }
            }

            var ans = new List<int>();
            for (int i = lb -1; i <= rb - 1; i++)
            {
                for (int j = 1679; j >= 0; j--)
                {
                    if (m[i, j] != 0 && !ans.Contains(m[i, j]))
                    {
                        ans.Add(m[i, j]);
                        break;
                    }
                }
            }

            for (int i = 1; i <= n; i++)
            {
                Console.WriteLine(ans.Contains(i) ? 1 : 0);
            }
        }
    }
}
0