結果
問題 | No.35 タイパー高橋 |
ユーザー | wowilson |
提出日時 | 2016-10-09 22:33:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 27 ms / 5,000 ms |
コード長 | 754 bytes |
コンパイル時間 | 2,515 ms |
コンパイル使用メモリ | 103,168 KB |
実行使用メモリ | 18,432 KB |
最終ジャッジ日時 | 2024-11-22 00:25:52 |
合計ジャッジ時間 | 3,166 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
17,920 KB |
testcase_01 | AC | 25 ms
18,176 KB |
testcase_02 | AC | 25 ms
18,432 KB |
testcase_03 | AC | 27 ms
18,304 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace Yukicoder { class Program { static void Main(string[] args) { var N = int.Parse(Console.ReadLine()); int typed = 0; int cantType = 0; for (int i = 0; i < N; i++) { var K = Console.ReadLine().Split(' '); int TK = int.Parse(K[0]); int SK = K[1].Length; if(TK * 12 / 1000 >= SK) { typed += SK; }else { typed += (TK * 12 / 1000); cantType += SK - (TK * 12 / 1000); } } Console.WriteLine("{0} {1}", typed, cantType); } } }