結果
| 問題 |
No.191 供託金
|
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-06-26 15:27:43 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 5,000 ms |
| コード長 | 839 bytes |
| コンパイル時間 | 937 ms |
| コンパイル使用メモリ | 111,056 KB |
| 実行使用メモリ | 26,004 KB |
| 最終ジャッジ日時 | 2024-06-25 01:07:25 |
| 合計ジャッジ時間 | 2,312 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
コンパイルメッセージ
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 yukicoderTest
{
class Program
{
static void Main(string[] args)
{
string input = Console.ReadLine();
string input2 = Console.ReadLine();
string[] vote = input2.Split(' ');
int[] num = new int[vote.Length];
int line = 0;
int cnt = 0;
for(int i=0;i<vote.Length;i++)
{
num[i] = int.Parse(vote[i]);
line = line + num[i];
}
for(int i=0;i<num.Length;i++)
{
if(num[i]<=line/10)
{
cnt++;
}
}
Console.WriteLine(cnt * 30);
}
}
}
funakoshi