結果
問題 | No.35 タイパー高橋 |
ユーザー | steek79 |
提出日時 | 2015-10-12 16:53:04 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 14 ms / 5,000 ms |
コード長 | 296 bytes |
コンパイル時間 | 43 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-07-21 07:17:43 |
合計ジャッジ時間 | 526 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
6,016 KB |
testcase_01 | AC | 14 ms
6,144 KB |
testcase_02 | AC | 14 ms
6,272 KB |
testcase_03 | AC | 14 ms
6,272 KB |
ソースコード
N = int(raw_input()) typed, missed = 0, 0 for i in xrange(N): inp = raw_input().split() T = int(inp[0]) S = len(inp[1]) max = T * 12 / 1000 if max >= S: typed += S else: typed += T * 12 / 1000 missed += S - T * 12 / 1000 print typed, missed