結果
| 問題 | No.35 タイパー高橋 |
| コンテスト | |
| ユーザー |
cande398
|
| 提出日時 | 2018-04-25 20:33:37 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 92 ms / 5,000 ms |
| + 479µs | |
| コード長 | 263 bytes |
| 記録 | |
| コンパイル時間 | 283 ms |
| コンパイル使用メモリ | 21,412 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-07-31 10:25:39 |
| 合計ジャッジ時間 | 1,576 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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