結果
問題 | No.35 タイパー高橋 |
ユーザー | konabe |
提出日時 | 2017-12-09 18:39:35 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 281 bytes |
コンパイル時間 | 117 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-11-30 05:28:24 |
合計ジャッジ時間 | 952 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,752 KB |
testcase_01 | AC | 35 ms
10,880 KB |
testcase_02 | AC | 35 ms
11,008 KB |
testcase_03 | AC | 35 ms
11,008 KB |
ソースコード
N = int(input()) TS = [list(input().split()) for n in range(N)] a, b= 0, 0 for ts in TS: str_num = len(ts[1]) act_touch = (12 * int(ts[0]))//1000 if act_touch >= str_num: a += str_num else: a += act_touch b += str_num - act_touch print(a, b)