結果

問題 No.35 タイパー高橋
ユーザー pypypymipypypymi
提出日時 2022-05-08 11:19:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-07-07 22:39:12
合計ジャッジ時間 936 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,312 KB
testcase_01 AC 50 ms
61,480 KB
testcase_02 AC 51 ms
61,952 KB
testcase_03 AC 49 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
count_s = 0
count_f = 0
for i in range(n):
    t,s = input().split()
    type_num = (12*int(t))//1000
    count_s += min(type_num,len(s))
    count_f += len(s)-type_num if len(s)>type_num else 0
print(count_s,count_f)
    
    
    
    
0