結果

問題 No.35 タイパー高橋
ユーザー ynyn
提出日時 2015-08-04 12:14:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-18 01:13:35
合計ジャッジ時間 767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,752 KB
testcase_01 AC 35 ms
11,008 KB
testcase_02 AC 35 ms
10,880 KB
testcase_03 AC 34 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
T = [0] * N
S = [0] * N
L = [0] * N
for i in range(N):
    T[i], S[i] = map(str, input().split())
    T[i] = int(T[i])
    L[i] = len(S[i])

misscount = 0
succcount = 0

for i in range(N):
    typing = T[i] * 12 // 1000
    if L[i] > typing:
        misscount += L[i] - typing
        succcount += typing
    else:
        succcount += L[i]

print(succcount, misscount)
0