結果

問題 No.35 タイパー高橋
ユーザー momoyuumomoyuu
提出日時 2022-08-03 00:18:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 209 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 63,412 KB
最終ジャッジ日時 2024-07-23 18:32:27
合計ジャッジ時間 1,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())
p = 0
q = 0
for i in range(N):
    t,s = input().split()
    t = int(t)
    s = len(s)
    m = (12*t)//1000
    if m >= s:
        p += s
    else:
        p += m
        q += s - m
print(p,q)
0