結果
問題 | No.35 タイパー高橋 |
ユーザー | na-sh |
提出日時 | 2020-07-15 11:02:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 250 bytes |
コンパイル時間 | 115 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-21 12:20:44 |
合計ジャッジ時間 | 674 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,624 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 35 ms
10,624 KB |
testcase_03 | AC | 35 ms
10,496 KB |
ソースコード
N = int(input()) X = 12 / 1000 ans = [0, 0] for _ in range(N): T, S = input().split() T = int(T) s = len(S) x = int(T * 12 / 1000) if s <= x: ans[0] += s else: ans[0] += x ans[1] += s - x print(*ans)