結果

問題 No.35 タイパー高橋
ユーザー S YS Y
提出日時 2024-10-19 12:55:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 591 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,324 KB
最終ジャッジ日時 2024-10-19 12:55:47
合計ジャッジ時間 3,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
44,324 KB
testcase_01 AC 530 ms
43,928 KB
testcase_02 AC 591 ms
43,936 KB
testcase_03 AC 499 ms
44,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy

n = int(input())
ts_lst = [ list(input().split(' ')) for i in range(n) ]

correct_cnt = 0
wrong_cnt = 0

for ts in ts_lst:
    t = int(ts[0])
    s = ts[1]

    s_len = len(s)
    leng = len(s)

    isCompleted = False
    while leng > 0:
        if numpy.floor(12*t/1000) >= leng:
            correct_cnt += leng
            wrong_cnt += s_len - leng
            isCompleted = True
            break
        else:
            leng -= 1
    if not isCompleted:
        wrong_cnt += s_len

print(f'{correct_cnt} {wrong_cnt}')
0