結果
問題 | No.35 タイパー高橋 |
ユーザー | konabe |
提出日時 | 2017-12-09 18:39:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 281 bytes |
コンパイル時間 | 115 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-07 12:39:34 |
合計ジャッジ時間 | 745 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,880 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)