結果

問題 No.35 タイパー高橋
ユーザー otsunekootsuneko
提出日時 2021-05-06 23:38:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 207 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 86,712 KB
実行使用メモリ 75,372 KB
最終ジャッジ日時 2023-10-12 15:56:15
合計ジャッジ時間 2,433 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
75,156 KB
testcase_01 AC 84 ms
75,336 KB
testcase_02 AC 85 ms
75,164 KB
testcase_03 AC 84 ms
75,372 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