結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | No |
提出日時 | 2018-04-28 01:24:08 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 34 ms / 2,000 ms |
コード長 | 1,453 bytes |
コンパイル時間 | 827 ms |
コンパイル使用メモリ | 111,048 KB |
実行使用メモリ | 33,180 KB |
最終ジャッジ日時 | 2024-06-27 23:10:20 |
合計ジャッジ時間 | 2,093 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
25,888 KB |
testcase_01 | AC | 28 ms
25,484 KB |
testcase_02 | AC | 29 ms
25,404 KB |
testcase_03 | AC | 28 ms
23,984 KB |
testcase_04 | AC | 34 ms
26,016 KB |
testcase_05 | AC | 32 ms
29,112 KB |
testcase_06 | AC | 31 ms
31,628 KB |
testcase_07 | AC | 30 ms
30,368 KB |
testcase_08 | AC | 32 ms
30,420 KB |
testcase_09 | AC | 32 ms
31,520 KB |
testcase_10 | AC | 30 ms
31,340 KB |
testcase_11 | AC | 32 ms
32,172 KB |
testcase_12 | AC | 32 ms
30,212 KB |
testcase_13 | AC | 33 ms
32,656 KB |
testcase_14 | AC | 33 ms
31,392 KB |
testcase_15 | AC | 33 ms
31,516 KB |
testcase_16 | AC | 30 ms
29,392 KB |
testcase_17 | AC | 33 ms
33,180 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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) { if(!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); } } } }