結果

問題 No.35 タイパー高橋
ユーザー zimphazimpha
提出日時 2017-12-13 22:42:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 63,276 KB
最終ジャッジ日時 2024-12-14 10:13:04
合計ジャッジ時間 1,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

cnt, ret = 0, 0
for i in range(int(input())):
  t, s = input().split()
  t = (int(t) * 12) // 1000
  cnt += min(len(s), t)
  if t < len(s):
    ret += len(s) - t
print(cnt, ret)
0