結果
| 問題 | No.35 タイパー高橋 |
| コンテスト | |
| ユーザー |
mrc1031
|
| 提出日時 | 2016-10-11 09:41:16 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 18 ms / 5,000 ms |
| コード長 | 639 bytes |
| 記録 | |
| コンパイル時間 | 2,210 ms |
| コンパイル使用メモリ | 104,704 KB |
| 実行使用メモリ | 19,456 KB |
| 最終ジャッジ日時 | 2026-05-16 05:13:42 |
| 合計ジャッジ時間 | 2,999 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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