結果

問題 No.35 タイパー高橋
ユーザー otsunekootsuneko
提出日時 2021-05-06 23:38:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 207 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-09-14 14:36:41
合計ジャッジ時間 1,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())

correct = 0
total = 0
for _ in range(N):
    T,S = map(str,input().split())
    T = int(T)
    correct += min(T*12//1000,len(S))
    total += len(S)

print(correct, total-correct)
0