結果

問題 No.110 しましまピラミッド
ユーザー kuuso1kuuso1
提出日時 2014-12-23 23:46:00
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,371 bytes
コンパイル時間 2,901 ms
コンパイル使用メモリ 115,232 KB
実行使用メモリ 26,460 KB
最終ジャッジ日時 2024-06-12 04:28:59
合計ジャッジ時間 2,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,308 KB
testcase_01 AC 28 ms
22,076 KB
testcase_02 AC 28 ms
21,936 KB
testcase_03 AC 27 ms
24,180 KB
testcase_04 AC 29 ms
26,352 KB
testcase_05 AC 29 ms
25,816 KB
testcase_06 AC 27 ms
21,684 KB
testcase_07 AC 28 ms
24,032 KB
testcase_08 AC 28 ms
24,032 KB
testcase_09 AC 29 ms
24,160 KB
testcase_10 AC 27 ms
26,232 KB
testcase_11 AC 27 ms
23,856 KB
testcase_12 AC 29 ms
24,160 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 27 ms
23,912 KB
testcase_19 AC 27 ms
26,096 KB
testcase_20 AC 26 ms
25,692 KB
testcase_21 AC 27 ms
24,032 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 27 ms
23,852 KB
testcase_25 WA -
testcase_26 AC 28 ms
24,032 KB
testcase_27 AC 29 ms
25,968 KB
testcase_28 WA -
testcase_29 AC 31 ms
22,064 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 System.Collections;
using System.Collections.Generic;
 
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		Array.Sort(A[0]);
		Array.Sort(A[1]);
		
		int[] P=new int[]{0,0};
		int max=0;
		
		for(int i=0;i<2;i++){
			int cnt=1;
			int turn=1-i;
			int now=A[i][0];
			while(true){
				if(P[turn]==A[turn].Length)break;
				if(A[turn][P[turn]]>now){
					now=A[turn][P[turn]];
					P[turn]++;
					cnt++;
					turn=1-turn;
					continue;
				}
				if(P[turn]<A[turn].Length){
					P[turn]++;
					continue;
				}
				break;
			}
			max=Math.Max(cnt,max);
		}
		
		Console.WriteLine(max);
		
		
		
	}
	int N,M;
	int[][] A;
	public Sol(){
		N=ri();
		A=new int[2][];
		A[0]=ria();
		M=ri();
		A[1]=ria();
	}




	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(){return Console.ReadLine().Split(' ');}
	static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
	static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
	static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}
0