結果
問題 | No.745 letinopia raoha |
ユーザー | Crowea |
提出日時 | 2019-02-04 16:11:18 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,035 bytes |
コンパイル時間 | 982 ms |
コンパイル使用メモリ | 106,240 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-06-07 15:17:24 |
合計ジャッジ時間 | 1,894 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 24 ms
19,072 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 26 ms
19,200 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 25 ms
19,200 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; public class Program { public static void Main(string[] args) { var result = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray(); int perfect = result[0]; int great = result[1]; int good = result[2]; int miss = result[3]; var score = 0; if (miss >= 10) { Console.WriteLine("Impossible"); return; } for (int i = 1; i <= great; i++) { if (1 <= i && i <= 100) score += 50; else if (101 <= i && i <= 200) score += 100; else if (201 <= i && i <= 300) score += 200; else if (301 <= i && i <= 400) score += 400; } for (int i = 1; i <= perfect; i++) { if (1 <= i && i <= 100) score += 100; else if (101 <= i && i <= 200) score += 200; else if (201 <= i && i <= 300) score += 400; else if (301 <= i && i <= 400) score += 800; } Console.WriteLine("Possible\n{0}",score); } }