結果
問題 | No.35 タイパー高橋 |
ユーザー | te-sh |
提出日時 | 2017-01-11 15:34:04 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 320 bytes |
コンパイル時間 | 950 ms |
コンパイル使用メモリ | 100,404 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-12 06:19:18 |
合計ジャッジ時間 | 1,267 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; void main() { auto n = readln.chomp.to!size_t; auto a = 0, b = 0; foreach (_; n.iota) { auto rd = readln.split, t = rd[0].to!int, s = rd[1].length; auto c = min(12 * t / 1000, s); a += c; b += s - c; } writeln(a, " ", b); }