結果
問題 | No.35 タイパー高橋 |
ユーザー | kmtrc130 |
提出日時 | 2017-04-25 15:56:22 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 909 bytes |
コンパイル時間 | 1,600 ms |
コンパイル使用メモリ | 109,420 KB |
実行使用メモリ | 28,188 KB |
最終ジャッジ日時 | 2024-09-13 08:48:01 |
合計ジャッジ時間 | 2,197 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 27 ms
24,052 KB |
testcase_03 | AC | 28 ms
25,824 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; class Program { static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); int possible = 0; int success = 0; int successCnt = 0; int missCnt = 0; string[] TS; for (int i = 0; i < N; i++) { TS = Console.ReadLine().Split(' '); possible = 12 * int.Parse(TS[0]) / 1000; if (TS[1].Length < possible) { successCnt += TS[1].Length; } else { if (possible < TS[1].Length) { success = possible; } else { success = (possible - TS[1].Length < 0 ? 0 : possible - TS[1].Length); } missCnt += TS[1].Length - possible; successCnt += success; } } Console.WriteLine("{0} {1}", successCnt, missCnt); } }