結果
問題 | No.35 タイパー高橋 |
ユーザー | curryudon08 |
提出日時 | 2021-02-28 22:02:50 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 25 ms / 5,000 ms |
コード長 | 675 bytes |
コンパイル時間 | 890 ms |
コンパイル使用メモリ | 104,192 KB |
実行使用メモリ | 18,688 KB |
最終ジャッジ日時 | 2024-10-02 22:25:18 |
合計ジャッジ時間 | 1,454 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
18,304 KB |
testcase_01 | AC | 23 ms
18,176 KB |
testcase_02 | AC | 25 ms
18,688 KB |
testcase_03 | AC | 25 ms
18,560 KB |
コンパイルメッセージ
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; namespace _0035 { class Program { static void Main(string[] args) { var n = long.Parse(Console.ReadLine()); var x1 = 0; var x2 = 0; for(var i = 0; i < n; i++){ var a = Console.ReadLine().Split(); var t = long.Parse(a[0]); var s = a[1]; var m1 = Math.Floor((12.0 * t) / 1000); var m2 = s.Length < m1 ? s.Length : m1; x1 += (int)m2; x2 += s.Length - (int)m2; } Console.WriteLine(string.Format("{0} {1}",x1, x2)); } } }