当前位置: 首页 > 工具软件 > fcbox-Lantern > 使用案例 >

Kattis Problem - Jack-O‘-Lantern Juxtaposition

方飞白
2023-12-01

Kattis Problem - Jack-O’-Lantern Juxtaposition

原题地址

题目类型:数学、排列组合
题意:

现在有眼睛、鼻子、嘴巴三种设计分别有 N、T、M 种。可以通过随意从中各取一个进行组合得到不同的设计。统计总共有多少种不同的设计。

分析:

排列组合问题。

代码:
public static void solve() throws IOException {
    int N = nextInt();
    int T = nextInt();
    int M = nextInt();
    
    pw.println(N * T * M);
} 

 类似资料: