結果
問題 | No.920 あかあお |
ユーザー | Shed0428 |
提出日時 | 2019-12-22 13:40:49 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 691 bytes |
コンパイル時間 | 766 ms |
コンパイル使用メモリ | 107,600 KB |
実行使用メモリ | 26,076 KB |
最終ジャッジ日時 | 2024-09-14 05:13:46 |
合計ジャッジ時間 | 1,744 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
23,904 KB |
testcase_01 | AC | 25 ms
23,852 KB |
testcase_02 | AC | 25 ms
26,076 KB |
testcase_03 | AC | 24 ms
23,812 KB |
testcase_04 | AC | 25 ms
21,808 KB |
testcase_05 | AC | 25 ms
23,644 KB |
testcase_06 | AC | 24 ms
26,000 KB |
testcase_07 | AC | 25 ms
23,776 KB |
testcase_08 | AC | 25 ms
23,980 KB |
testcase_09 | AC | 26 ms
25,740 KB |
testcase_10 | AC | 25 ms
25,872 KB |
testcase_11 | AC | 25 ms
23,776 KB |
testcase_12 | AC | 26 ms
25,872 KB |
testcase_13 | AC | 25 ms
25,692 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Hello{ public static void Main(){ string[] list = Console.ReadLine().Trim().Split(' '); int red = int.Parse(list[0]); int blue = int.Parse(list[1]); int white = int.Parse(list[2]); if((red - blue)>white){ Console.WriteLine(blue + white); }else if((blue - red)>white){ Console.WriteLine(red + white); }else if(red>blue){ white -=red-blue; Console.WriteLine(red + white/2); }else if(blue>red){ white -=blue-red; Console.WriteLine(blue + white/2); }else{ Console.WriteLine(red + white/2); } } }