結果

問題 No.35 タイパー高橋
ユーザー Fullmoon85072Fullmoon85072
提出日時 2020-08-02 09:20:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 62,884 KB
最終ジャッジ日時 2024-07-18 07:00:45
合計ジャッジ時間 802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())

typing_list = list()
for i in range(N):
    typing_list.append(input().split(" "))

success_count = 0
fail_count = 0
typing_num_for_one_msecond = 12 / 1000
for section in typing_list:
    msecond = int(section[0])
    typing_str = section[1]

    max_typing_len = int(msecond * typing_num_for_one_msecond)
    if max_typing_len - len(typing_str) >= 0:
        success_count += len(typing_str)
    else:
        success_count += max_typing_len
        fail_count += len(typing_str) - max_typing_len

print("{} {}".format(success_count, fail_count))
0