結果
| 問題 | No.35 タイパー高橋 |
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-06-17 15:04:31 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 275 bytes |
| 記録 | |
| コンパイル時間 | 488 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,956 KB |
| 最終ジャッジ日時 | 2026-04-17 10:13:32 |
| 合計ジャッジ時間 | 2,302 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 4 |
ソースコード
N=int(input())
T=[[i for i in input(). split ()] for i in range (N)]
#rint (T)
C=0
Cs=0
for i in range (N):
T[i][0]=int(T[i][0])
C1=12*T[i][0]//1000
C+=C1
C2=len(T[i][1])-C1
if C2<0:
C2=0
Cs+=C2
# print (Cs)
R=Cs-C
C=str(C)
print (C+" "+R)
rocoder