結果
問題 | No.745 letinopia raoha |
ユーザー | toshiro_yanagi |
提出日時 | 2018-11-26 21:25:12 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 1,334 bytes |
コンパイル時間 | 822 ms |
コンパイル使用メモリ | 109,528 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-06-11 06:51:07 |
合計ジャッジ時間 | 1,611 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
19,072 KB |
testcase_01 | AC | 22 ms
18,432 KB |
testcase_02 | AC | 22 ms
18,816 KB |
testcase_03 | AC | 22 ms
18,944 KB |
testcase_04 | AC | 21 ms
18,688 KB |
testcase_05 | AC | 22 ms
18,816 KB |
testcase_06 | AC | 22 ms
18,944 KB |
testcase_07 | AC | 21 ms
18,688 KB |
testcase_08 | AC | 22 ms
18,688 KB |
testcase_09 | AC | 22 ms
18,560 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Collections.Generic; using System.Linq; using static System.Console; class Program { static void Main() { var score = 0; var bonus = 1; var pf = NextInt(); var gt = NextInt(); var gd = NextInt(); var ms = NextInt(); if (ms >= 10) { WriteLine("Impossible"); return; } foreach (var i in Enumerable.Range(1, int.MaxValue)) { if (gt == 0 && pf == 0) { break; } else if (gt != 0) { score += 50 * bonus; gt--; } else if (pf != 0) { score += 100 * bonus; pf--; } if (i % 100 == 0) { bonus *= 2; } } WriteLine("Possible\n" + score.ToString()); } static int NextInt() { return int.Parse(NextString()); } static string NextString() { var result = new List<char>(); while (true) { int next = Read(); if (next < 0) break; var nextChar = (char)next; if (!char.IsWhiteSpace(nextChar)) result.Add(nextChar); else if (nextChar != '\r') break; } return string.Join("", result); } }