結果

問題 No.35 タイパー高橋
ユーザー wowilsonwowilson
提出日時 2016-10-09 22:33:24
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 754 bytes
コンパイル時間 3,346 ms
コンパイル使用メモリ 99,348 KB
実行使用メモリ 22,772 KB
最終ジャッジ日時 2023-08-14 05:48:50
合計ジャッジ時間 4,370 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
20,692 KB
testcase_01 AC 60 ms
20,776 KB
testcase_02 AC 60 ms
22,772 KB
testcase_03 AC 60 ms
20,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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);
        }
    }
}
0