結果
問題 | No.1454 ツブ消ししとるなEasy |
ユーザー | 吉田英陽 |
提出日時 | 2021-03-31 21:38:01 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,491 bytes |
コンパイル時間 | 934 ms |
コンパイル使用メモリ | 110,820 KB |
実行使用メモリ | 55,392 KB |
最終ジャッジ日時 | 2024-12-15 16:09:31 |
合計ジャッジ時間 | 5,356 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
29,780 KB |
testcase_01 | AC | 22 ms
24,620 KB |
testcase_02 | AC | 23 ms
26,980 KB |
testcase_03 | AC | 22 ms
24,892 KB |
testcase_04 | AC | 55 ms
32,116 KB |
testcase_05 | AC | 22 ms
24,760 KB |
testcase_06 | AC | 26 ms
27,240 KB |
testcase_07 | TLE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 24 ms
26,988 KB |
testcase_11 | AC | 23 ms
25,020 KB |
testcase_12 | AC | 22 ms
24,644 KB |
testcase_13 | AC | 23 ms
24,896 KB |
testcase_14 | AC | 28 ms
25,540 KB |
testcase_15 | AC | 28 ms
26,992 KB |
testcase_16 | AC | 38 ms
25,144 KB |
testcase_17 | AC | 21 ms
24,752 KB |
testcase_18 | AC | 22 ms
24,636 KB |
testcase_19 | AC | 23 ms
55,392 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 System.Threading.Tasks; namespace ConsoleApp190 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(); int n = int.Parse(str[0]); int m = int.Parse(str[1]); int x = int.Parse(str[2]); int y = int.Parse(str[3]); int nokori = n; int kesu = 0; long sum = 0; long[] a = new long[n]; string[] str2 = Console.ReadLine().Split(); for(int i = 0; i < n; i++) { a[i] = int.Parse(str2[i]); } for(int i = 0; i < n; i++) { if (a[i] <= y) { nokori -= 1; a[i] = 1000000; kesu += 1; } } while (a.Min() < x&&nokori>m) { nokori -= 1; a[Array.IndexOf(a,a.Min())] = 1000000; kesu += 1; } if (nokori>m) { Console.WriteLine("Handicapped"); } else { for(int i = 0; i < n; i++) { sum += a[i]; } Console.WriteLine(sum-(kesu*1000000)); } Console.ReadLine(); } } }