結果

問題 No.35 タイパー高橋
ユーザー mrc1031mrc1031
提出日時 2016-10-11 09:41:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 3,583 ms
コンパイル使用メモリ 103,724 KB
実行使用メモリ 22,872 KB
最終ジャッジ日時 2023-08-14 06:28:34
合計ジャッジ時間 4,434 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
22,816 KB
testcase_01 AC 58 ms
22,872 KB
testcase_02 AC 56 ms
20,772 KB
testcase_03 AC 57 ms
22,776 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