結果
問題 | No.35 タイパー高橋 |
ユーザー | Mamonbo |
提出日時 | 2015-06-21 17:16:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 423 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-07 15:52:07 |
合計ジャッジ時間 | 742 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
10,752 KB |
testcase_01 | AC | 34 ms
10,752 KB |
testcase_02 | AC | 34 ms
10,752 KB |
testcase_03 | AC | 33 ms
10,752 KB |
ソースコード
#coding=UTF-8 #えっ、器物損壊? #文字自体は関係無いとかこええ N=int(input()) hits=0 myon=0 for idx in range(0,N,1): mojir=input() hyo=mojir.split(" ") T=int(hyo[0]) S=hyo[1] maxtype=12*T//1000 if maxtype>=len(S): hits=hits+len(S) myon=myon else: hits=hits+maxtype myon=myon+(len(S)-maxtype) #print(hits,myon) print("%d %d"%(hits,myon))