結果
| 問題 | No.35 タイパー高橋 |
| コンテスト | |
| ユーザー |
cande398
|
| 提出日時 | 2018-04-25 20:33:37 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
AC
|
| 実行時間 | 98 ms / 5,000 ms |
| コード長 | 263 bytes |
| 記録 | |
| コンパイル時間 | 612 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-03-15 23:55:59 |
| 合計ジャッジ時間 | 1,920 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
N = int(input()) str_sum = 0 typed_sum = 0 for i in range(N): line = input().split() str_sum += len(line[1]) typed = int(int(line[0])*0.012) if typed > len(line[1]): typed_sum += len(line[1]) else: typed_sum += typed print(typed_sum, str_sum - typed_sum)
cande398