結果
問題 |
No.112 ややこしい鶴亀算
|
ユーザー |
|
提出日時 | 2018-09-22 16:33:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 5,000 ms |
コード長 | 628 bytes |
コンパイル時間 | 767 ms |
コンパイル使用メモリ | 104,192 KB |
実行使用メモリ | 18,304 KB |
最終ジャッジ日時 | 2024-07-18 09:00:18 |
合計ジャッジ時間 | 1,965 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
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; class Program{ static void Main(string[]args){ int N=int.Parse(Console.ReadLine()); string[]t=Console.ReadLine().Split(' '); int []a=new int[t.Length]; long sum=0; int tsuru=0; int turtle=0; for(int i=0;i<t.Length;i++){ a[i]=int.Parse(t[i]); sum+=a[i]; } sum=sum/(a.Length-1); for(int i=0;i<t.Length;i++){ if(sum-a[i]==2){ tsuru++; }else if(sum-a[i]==4){ turtle++; } } Console.WriteLine(tsuru+" "+turtle); } }