結果
| 問題 |
No.35 タイパー高橋
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-05-20 23:11:04 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 34 ms / 5,000 ms |
| コード長 | 189 bytes |
| コンパイル時間 | 149 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-10-01 23:46:10 |
| 合計ジャッジ時間 | 833 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
N=int(input())
suc=0
mis=0
for i in range(N):
#750 yukicoder
_s=input().split()
x,s=int(_s[0]),len(_s[1])
w=min(12*x//1000,s)
suc=suc+w
mis=mis+(s-w)
print(suc,mis)