結果
| 問題 | No.133 カードゲーム | 
| コンテスト | |
| ユーザー |  suzu | 
| 提出日時 | 2023-05-08 13:46:17 | 
| 言語 | C#(csc) (csc 3.9.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 29 ms / 5,000 ms | 
| コード長 | 1,309 bytes | 
| コンパイル時間 | 2,472 ms | 
| コンパイル使用メモリ | 115,728 KB | 
| 実行使用メモリ | 28,188 KB | 
| 最終ジャッジ日時 | 2024-11-25 06:37:17 | 
| 合計ジャッジ時間 | 3,857 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 19 | 
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
using System.Collections.Generic;
class Program
{
	static int winCount = 0;
	static int winConparison = 0;
	static double standard = 0;
	
    static void Main(string[] args)
    {
    	int n = int.Parse(Console.ReadLine());
    	var aList = Console.ReadLine().Split(' ').Select(c => int.Parse(c)).ToList();
    	
    	var bList = Console.ReadLine().Split(' ').Select(c => int.Parse(c)).ToList();
    	
    	standard = n / 2.0;
    	int patternNum = 1;
    	for(int i = n;i > 0;i--)
    	{
    		patternNum *= i;
    	}
    	winCheck(aList,bList);
    	
    	Console.WriteLine((double)winCount / patternNum);
    	
    	
    	
    }
    
    static void winCheck(List<int> aL,List<int> bL)
    {
    	int tempConparison = winConparison;
    	
    	for(int i = 0;i < bL.Count;i++)
    	{
    		var tempA = new List<int>(aL);
    		var tempB = new List<int>(bL);
    		
    		if(tempA[0] > tempB[i])
    		{
    			
    			winConparison++;
    		}
    		
    		tempA.RemoveAt(0);
    		tempB.RemoveAt(i);
    		
    		if(tempB.Count == 0)
    		{
    			
    			if(winConparison > standard)
    			{
    				
    				winCount++;
    			}
    			break;
    		}
    		winCheck(tempA,tempB);
    		winConparison = tempConparison;
    	}
    	
    	
    	
    }
    
    
    
    
}
            
            
            
        