結果
問題 |
No.35 タイパー高橋
|
ユーザー |
![]() |
提出日時 | 2020-01-01 11:10:30 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 299 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-21 20:39:57 |
合計ジャッジ時間 | 881 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 4 |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines N = int(readline()) data = readlines() answer = 0 for line in data: t,s = line.split() t = int(t) L = len(s) x = t * 12 // 1000 answer += min(x,L) print(answer)