結果
問題 | No.475 最終日 - Writerの怠慢 |
ユーザー | Tomohiko Hasegawa |
提出日時 | 2019-04-19 16:48:37 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,270 bytes |
コンパイル時間 | 1,026 ms |
コンパイル使用メモリ | 113,264 KB |
実行使用メモリ | 36,648 KB |
最終ジャッジ日時 | 2024-09-22 11:34:43 |
合計ジャッジ時間 | 2,887 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
27,908 KB |
testcase_01 | AC | 34 ms
25,976 KB |
testcase_02 | AC | 38 ms
28,648 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 91 ms
33,636 KB |
testcase_14 | AC | 32 ms
25,336 KB |
コンパイルメッセージ
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 System.Text; using static System.Console; using static System.Math; namespace AtTest.yukicoder { class _475 { static void Main(string[] args) { Method(args); } static void Method(string[] args) { int[] nsw = ReadInts(); int n = nsw[0]; int s = nsw[1]; int w = nsw[2]; long[] prevArray = new long[n - 1]; int[] array = ReadInts(); for (int i = 0; i < n; i++) { if (i < w) prevArray[i] = array[i]; if (i > w) prevArray[i - 1] = array[i]; } prevArray = prevArray.OrderBy(a => -a).ToArray(); int writerTotal = array[w] + 100 * s; int[] points = new int[n - 1]; for (int i = 0; i < n - 1; i++) { points[i] = 50 * s + 500 * s / (8 + 2 * (i + 1)); } double res = 1; int pointI = n - 2; for (int i = 0; i < n - 1; i++) { while (pointI >= 0 && prevArray[i] + points[pointI] <= writerTotal) { pointI--; } pointI++; if (n - 1 - pointI - i <= 0) { WriteLine(0); return; } res *= n - 1 - pointI - i; res /= (i+1); } WriteLine(res); } private static string Read() { return ReadLine(); } private static char[] ReadChars() { return Array.ConvertAll(Read().Split(), a => a[0]); } private static int ReadInt() { return int.Parse(Read()); } private static long ReadLong() { return long.Parse(Read()); } private static double ReadDouble() { return double.Parse(Read()); } private static int[] ReadInts() { return Array.ConvertAll(Read().Split(), int.Parse); } private static long[] ReadLongs() { return Array.ConvertAll(Read().Split(), long.Parse); } private static double[] ReadDoubles() { return Array.ConvertAll(Read().Split(), double.Parse); } } }