結果
問題 | No.35 タイパー高橋 |
ユーザー | ゴリポン先生 |
提出日時 | 2024-04-21 10:34:53 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 7 ms / 5,000 ms |
コード長 | 312 bytes |
コンパイル時間 | 6,363 ms |
コンパイル使用メモリ | 212,460 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 09:24:54 |
合計ジャッジ時間 | 7,023 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,248 KB |
testcase_02 | AC | 7 ms
5,248 KB |
testcase_03 | AC | 6 ms
5,248 KB |
ソースコード
module main; import std; void main() { auto N = readln.chomp.to!int; int ok = 0, ng = 0; foreach (_; 0 .. N) { int T; string S; readln.chomp.formattedRead("%d %s", T, S); int len = S.length.to!int, typed = min((T * 12) / 1000, len); ok += typed, ng += len - typed; } writefln("%d %d", ok, ng); }