結果
問題 | No.35 タイパー高橋 |
ユーザー | _KingdomOfMoray |
提出日時 | 2019-12-03 22:59:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 477 bytes |
コンパイル時間 | 250 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-05-05 21:16:55 |
合計ジャッジ時間 | 812 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 30 ms
11,008 KB |
testcase_02 | AC | 30 ms
11,008 KB |
testcase_03 | AC | 31 ms
11,008 KB |
ソースコード
import math def min(a, b): if a >= b: return b else: return a n = int(input()) t = [] s = [] for i in range(n): ti, si=[i for i in input().split()] t.append(ti) s.append(si) int_t = [int(curelm) for curelm in t] correct = 0 miss = 0 for i in range(n): limit = math.floor(12 * int_t[i] / 1000) curinput = min(limit, len(s[i])) miss += len(s[i]) - curinput correct += curinput print('{} {}'.format(correct, miss))