結果
問題 | No.35 タイパー高橋 |
ユーザー | 0x6d61 |
提出日時 | 2017-08-05 12:18:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 36 ms / 5,000 ms |
コード長 | 269 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-11 20:34:58 |
合計ジャッジ時間 | 641 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
10,368 KB |
testcase_01 | AC | 36 ms
10,368 KB |
testcase_02 | AC | 36 ms
10,496 KB |
testcase_03 | AC | 33 ms
10,368 KB |
ソースコード
r = 0 ms = 0 N = int(input()) T = (tuple(input().split(' ')) for i in range(N)) for i in T: typestr = int(int(i[0])*0.012) if typestr >= len(i[1]): r+=len(i[1]) else: r+=typestr ms+=len(i[1]) - typestr print("{0} {1}".format(r,ms))