結果
問題 |
No.35 タイパー高橋
|
ユーザー |
|
提出日時 | 2014-10-07 23:56:46 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 15 ms / 5,000 ms |
コード長 | 252 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-12-30 07:40:39 |
合計ジャッジ時間 | 671 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
N = int(raw_input()) miss_total = 0 total = 0 for _ in xrange(N): T, S = raw_input().split() total += len(S) current_miss = len(S) - (12 * int(T) // 1000) miss_total += max(current_miss, 0) print total - miss_total, miss_total