結果
問題 | No.352 カード並べ |
ユーザー | kuuso1 |
提出日時 | 2016-03-12 00:10:59 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,185 bytes |
コンパイル時間 | 2,929 ms |
コンパイル使用メモリ | 114,800 KB |
実行使用メモリ | 27,716 KB |
最終ジャッジ日時 | 2024-09-25 01:34:44 |
合計ジャッジ時間 | 3,656 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
27,716 KB |
testcase_01 | AC | 25 ms
24,868 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
コンパイルメッセージ
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; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ if(N==2){ Console.WriteLine(2); return; } double d=2; for(int n=3;n<=N;n++){ d+=2.0/(double)n; for(int i=1;i<n;i++){ for(int j=1;j<n;j++){ if(i==j)continue; double e=(double)i*j/(double)(n-1)/(double)(n-2)/n; d+=e; } } } Console.WriteLine(d); } int N; public Sol(){ N=ri(); } 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(char sep=' '){return Console.ReadLine().Split(sep);} static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} }