输出:
10000
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
用例四:
输入:
2
20CNY53fen
53HKD87cents
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
输出:
6432
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
python解法
- 解题思路:
- 本题要求将多条记录中的货币金额转换为分(fen),并求得总金额。每条记录包含不同的货币及其金额。我们需要根据不同货币的汇率将其统一转换成分(fen),然后累加所有金额。
解决步骤:
定义汇率转换表:
题目提供了不同货币到 fen 的汇率,我们需要用字典 rates 存储这些汇率。每种货币对应其兑换成 fen 的比率。例如,1 CNY = 100 fen;1 JPY = 100 / 1825 fen,依此类推。
正则表达式提取货币和金额:
对每条记录使用正则表达式 re.findall 来提取金额和货币。正则表达式 (\d+)(CNY|JPY|HKD|EUR|GBP|fen|cents|sen|eurocents|pence) 会匹配形如 123CNY、456JPY 这样的字符串,提取出数字部分和货币部分。
汇率转换:
对于每条记录中的所有金额和货币,我们用相应货币的汇率将其转换为 fen。根据汇率将金额乘以汇率,得到该货币的 fen 结果。
求和:
将所有转换成 fen 的金额加起来,得到总金额。
返回结果:
返回总金额并转换为整数。
import re
def convert_currency_to_fen(records):
rates = {
"CNY": 100,
"JPY": 100 / 1825 * 100,
"HKD": 100 / 123 * 100,
"EUR": 100 / 14 * 100,
"GBP": 100 / 12 * 100,
"fen": 1,
"cents": 100 / 123,
"sen": 100 / 1825,
"eurocents": 100 / 14,
"pence": 100 / 12
}
total_fen = sum(int(amount) * rates[currency]
for record in records
for amount, currency in re.findall(
r"(\d+)(CNY|JPY|HKD|EUR|GBP|fen|cents|sen|eurocents|pence)", record))
return int(total_fen)
n = int(input())
records = [input() for _ in range(n)]
print(convert_currency_to_fen(records))
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
java解法
- 解题思路
- 本题要求将多条记录中的货币金额转换为分(fen),并求得总金额。每条记录包含不同的货币及其金额。我们需要根据不同货币的汇率将其统一转换成分(fen),然后累加所有金额。
解决步骤:
定义汇率转换表:
题目给出了不同货币到 fen 的汇率。我们需要用一个 Map 存储这些汇率。每种货币都对应一个兑换成 fen 的比率。例如,1 CNY = 100 fen;1 JPY = 100 / 1825 fen,依此类推。
正则表达式提取货币和金额:
每条记录中可能包含多个货币及其金额,我们可以使用正则表达式 Pattern 来匹配记录中的金额和货币。通过正则表达式提取出数字部分(金额)和货币部分(如 CNY、JPY 等)。
汇率转换:
对于每条记录中的每一对 (amount, currency),我们根据 rates 中的汇率将金额转换为 fen。然后将所有金额累加得到总金额。
返回结果:
由于结果可能是浮动值,我们将其转换为整数并返回。返回值表示所有货币金额转换为 fen 后的总和。
import java.util.*;
import java.util.regex.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
sc.nextLine();
String[] rec = new String[n];
for (int i = 0; i < n; i++) {
rec[i] = sc.nextLine();
}
CurrencyConverter converter = new CurrencyConverter();
System.out.println(converter.convertToFen(rec));
}
}
class CurrencyConverter {
private final Map<String, Double> rates;
private final Pattern regex;
public CurrencyConverter() {
rates = new HashMap<>();
rates.put("CNY", 100.0);
rates.put("JPY", 100.0 / 1825 * 100);
rates.put("HKD", 100.0 / 123 * 100);
rates.put("EUR", 100.0 / 14 * 100);
rates.put("GBP", 100.0 / 12 * 100);
rates.put("fen", 1.0);
rates.put("cents", 100.0 / 123);
rates.put("sen", 100.0 / 1825);
rates.put("eurocents", 100.0 / 14);
rates.put("pence", 100.0 / 12);
regex = Pattern.compile("(\\d+)(CNY|JPY|HKD|EUR|GBP|fen|cents|sen|eurocents|pence)");
}
public int convertToFen(String[] rec) {
double total = 0;
for (String r : rec) {
Matcher matcher = regex.matcher(r);
while (matcher.find()) {
int amount = Integer.parseInt(matcher.group(1));
String currency = matcher.group(2);
total += amount * rates.get(currency);
}
}
return (int) total;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
C++解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
C解法
主要步骤:
读取输入:
先输入一个整数 n,表示记录的数量。
接着读取 n 条记录,每条记录包含一个金额和一个货币单位。
货币单位汇率转换:
根据不同的货币单位(如 CNY、JPY、HKD 等),将金额转换为 fen。汇率通过 getRate 函数获得。
汇率已知,1 CNY = 100 fen,1 JPY = 100/1825 * 100 fen 等。
解析记录:
每条记录中包括一个金额和货币单位。通过遍历记录字符串,将数字部分作为金额,字母部分作为货币单位。
使用 getRate 函数将金额转换为 fen 并累加。
输出结果:
最后,输出转换后的总 fen 数量(取整后输出)。
#include
#include
#include
double getRate(const char* unt) {
if (strcmp(unt, "CNY") == 0)
return 100.0;
else if (strcmp(unt, "JPY") == 0)
return 100.0 / 1825 * 100;
else if (strcmp(unt, "HKD") == 0)
return 100.0 / 123 * 100;
else if (strcmp(unt, "EUR") == 0)
return 100.0 / 14 * 100;
else if (strcmp(unt, "GBP") == 0)
return 100.0 / 12 * 100;
else if (strcmp(unt, "fen") == 0)
return 1.0;
else if (strcmp(unt, "cents") == 0)
return 100.0 / 123;
else if (strcmp(unt, "sen") == 0)
return 100.0 / 1825;
else if (strcmp(unt, "eurocents") == 0)
return 100.0 / 14;
else if (strcmp(unt, "pence") == 0)
return 100.0 / 12;
else
return 0.0;
}
int main() {
int n;
scanf("%d", &n);
getchar();
double total = 0;
for (int i = 0; i < n; i++) {
char rec[100];
fgets(rec, 100, stdin);
int amt = 0;
char unt[20] = "";
int len = strlen(rec);
for (int j = 0; j < len; j++) {
char c = rec[j];
if (isdigit(c)) {
amt = amt * 10 + (c - '0');
}
else if (isalpha(c)) {
int k = 0;
while (j < len && isalpha(rec[j])) {
unt[k++] = rec[j++];
}
unt[k] = '\0';
total += amt * getRate(unt);
amt = 0;
unt[0] = '\0';
j--;
}
}
}
printf("%d\n", (int)total);
return 0;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
JS解法
主要步骤:
读取输入:
第一行输入一个整数 n,表示记录的数量。
接着读取 n 条记录,每条记录包含一个金额和货币单位。
货币单位汇率转换:
使用汇率字典 rates 将不同货币单位转换为 fen 单位。
汇率的转换基于给定的货币与 fen 的比例。例如 1 CNY = 100 fen,1 JPY = 100 / 1825 * 100 fen 等。
解析记录:
使用正则表达式从每条记录中提取出金额和货币单位。
根据货币单位从 rates 中查找相应的汇率,将金额转换为 fen 并累加到总和 sum 中。
输出结果:
最后,输出所有记录对应金额的总和,取整后返回
const rl = require("readline").createInterface({
input: process.stdin,
output: process.stdout,
});
const records = [];
rl.on("line", (line) => {
records.push(line);
if (records.length === parseInt(records[0]) + 1) {
records.shift();
console.log(computeTotalFen(records));
rl.close();
}
});
function computeTotalFen(entries) {
const rates = {
CNY: 100,
JPY: (100 / 1825) * 100,
HKD: (100 / 123) * 100,
EUR: (100 / 14) * 100,
GBP: (100 / 12) * 100,
fen: 1,
cents: 100 / 123,
sen: 100 / 1825,
eurocents: 100 / 14,
pence: 100 / 12,
};
const currencyPattern = /(\d+)((CNY)|(JPY)|(HKD)|(EUR)|(GBP)|(fen)|(cents)|(sen)|(eurocents)|(pence))/g;
let sum = 0;
for (const record of entries) {
let result;
while ((result = currencyPattern.exec(record)) !== null) {
const amount = parseInt(result[1]);
const unit = result[2];
sum += amount * rates[unit];
}
}
return Math.floor(sum);
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: