結果
問題 | No.35 タイパー高橋 |
ユーザー | shobonvip |
提出日時 | 2020-04-12 23:44:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 428 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-09-22 14:21:04 |
合計ジャッジ時間 | 698 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
n = int(input()) t_str = ["" for i in range(n)] s_str = ["" for i in range(n)] for i in range(n): t_str[i], s_str[i] = map(str, input().split()) t_set = set(t_str) t = [int(i) for i in t_set] s = [len(i) for i in s_str] p_cnt = 0 s_cnt = 0 for i in range(n): uteru = (t[i]*12)//1000 if uteru >= s[i]: p_cnt += s[i] else: p_cnt += uteru s_cnt += s[i]-uteru print(str(p_cnt)+" "+str(s_cnt))