結果
問題 | No.35 タイパー高橋 |
ユーザー | yoza |
提出日時 | 2014-10-08 00:28:05 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 39 ms / 5,000 ms |
コード長 | 337 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-12-30 07:45:40 |
合計ジャッジ時間 | 939 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
10,752 KB |
testcase_01 | AC | 37 ms
10,880 KB |
testcase_02 | AC | 39 ms
11,008 KB |
testcase_03 | AC | 36 ms
11,136 KB |
ソースコード
n = int(input()) ts_list = [] for i in range(n): t, s = input().split() t = int(t) ts_list.append([t, s]) rate = 1000 / 12 ok_count = 0 ng_count = 0 for t, s in ts_list: tmp_ok = int(t // rate) ok_count += min(tmp_ok, len(s)) ng_count += len(s) - min(tmp_ok, len(s)) print(ok_count, ng_count)