結果
| 問題 | No.191 供託金 |
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-06-26 15:27:43 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 20 ms / 5,000 ms |
| コード長 | 839 bytes |
| 記録 | |
| コンパイル時間 | 639 ms |
| コンパイル使用メモリ | 107,876 KB |
| 実行使用メモリ | 26,776 KB |
| 最終ジャッジ日時 | 2026-03-11 05:44:02 |
| 合計ジャッジ時間 | 1,912 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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