結果
問題 | No.647 明太子 |
ユーザー | iwkjosec |
提出日時 | 2018-03-25 00:42:35 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 975 bytes |
コンパイル時間 | 910 ms |
コンパイル使用メモリ | 106,880 KB |
実行使用メモリ | 23,396 KB |
最終ジャッジ日時 | 2024-06-25 03:23:14 |
合計ジャッジ時間 | 3,268 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
19,200 KB |
testcase_01 | AC | 30 ms
19,072 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | AC | 31 ms
19,200 KB |
testcase_05 | AC | 30 ms
19,200 KB |
testcase_06 | AC | 31 ms
19,200 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 33 ms
19,456 KB |
testcase_10 | AC | 37 ms
19,456 KB |
testcase_11 | RE | - |
testcase_12 | AC | 34 ms
19,456 KB |
testcase_13 | AC | 39 ms
19,584 KB |
testcase_14 | AC | 91 ms
22,784 KB |
testcase_15 | AC | 42 ms
19,840 KB |
testcase_16 | AC | 35 ms
19,456 KB |
testcase_17 | AC | 106 ms
23,032 KB |
testcase_18 | AC | 114 ms
23,032 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 119 ms
23,396 KB |
testcase_23 | RE | - |
コンパイルメッセージ
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; using System.Linq; using static System.Console; class Program { static void Main() { var N = int.Parse(ReadLine()); var A = new int[N]; var B = new int[N]; for (int i = 0; i < N; i++) { var AB = ReadLine().Split().Select(int.Parse).ToArray(); A[i]=AB[0]; B[i]=AB[1]; } var M =int.Parse(ReadLine()); var X = new int[N]; var Y = new int[N]; for (int i = 0; i < M; i++) { var XY = ReadLine().Split().Select(int.Parse).ToArray(); X[i]=XY[0]; Y[i]=XY[1]; } var c=new int[M]; for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { if(A[i]>=X[j]&&B[i]<=Y[j])c[j]++; } } foreach (var i in c.Select((x,i)=>x==c.Max()?i:-1).Where(x=>x>-1))WriteLine(i+1); } }