結果
問題 | No.35 タイパー高橋 |
ユーザー | yoza |
提出日時 | 2014-10-08 00:28:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 337 bytes |
コンパイル時間 | 370 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-06-09 15:29:31 |
合計ジャッジ時間 | 892 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
11,008 KB |
testcase_01 | AC | 29 ms
11,008 KB |
testcase_02 | AC | 30 ms
11,136 KB |
testcase_03 | AC | 31 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)