結果

問題 No.35 タイパー高橋
ユーザー yuuki1036yuuki1036
提出日時 2018-11-09 10:17:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 260 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-01 04:08:14
合計ジャッジ時間 796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())
log = []
resA = resB = 0

for i in range(N):
    l = input().split()
    t, m = int(l[0]),len(l[1])
    typed = 12*t//1000
    if m <= typed:
        resA += m
    else:
        resA += typed
        resB += m - typed
        
print(resA,resB)
0