結果

問題 No.35 タイパー高橋
ユーザー mrc1031mrc1031
提出日時 2016-10-11 09:41:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 4,796 ms
コンパイル使用メモリ 102,912 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-11-22 01:21:23
合計ジャッジ時間 5,413 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

using System;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        // No.35 タイパー高橋

        int N = int.Parse(Console.ReadLine());
        string ts, S;
        int T = 0;
        int ok = 0, miss = 0;

        for (int i = 1; i <= N; i++)
        {
            ts = Console.ReadLine();
            T = int.Parse(ts.Split(' ')[0]);
            S = ts.Split(' ')[1];
            ok += S.Length;
            if (S.Length - (int)((double)T / 1000 * 12) > 0)
                miss += S.Length - (int)((double)T / 1000 * 12);
        }
        Console.WriteLine("{0} {1}", ok - miss, miss);
    }
}

0