結果
問題 | No.35 タイパー高橋 |
ユーザー | pro_kuni |
提出日時 | 2018-06-20 00:11:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 410 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-30 17:20:55 |
合計ジャッジ時間 | 727 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
11,008 KB |
testcase_01 | AC | 33 ms
11,008 KB |
testcase_02 | AC | 33 ms
11,008 KB |
testcase_03 | AC | 33 ms
11,008 KB |
ソースコード
if __name__ == '__main__': n = int(input()) a = [] for i in range(n): pair = input().split() pair[0] = int(pair[0]) a.append(pair) o = 0 m = 0 for p in a: t = p[0] s = p[1] to = 12 * t // 1000 if len(s) > to: o += to m += len(s) - to else: o += len(s) print(str(o) + " " + str(m))