結果
問題 |
No.352 カード並べ
|
ユーザー |
![]() |
提出日時 | 2016-03-12 00:39:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 1,171 bytes |
コンパイル時間 | 867 ms |
コンパイル使用メモリ | 114,824 KB |
実行使用メモリ | 26,904 KB |
最終ジャッジ日時 | 2024-09-25 01:43:49 |
合計ジャッジ時間 | 1,602 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
コンパイルメッセージ
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)/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));} }