結果
| 問題 |
No.35 タイパー高橋
|
| コンテスト | |
| ユーザー |
mrc1031
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
コンパイルメッセージ
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)
{
// 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);
}
}
mrc1031