1 条题解
-
0
java简单实现
import java.util.*; public class Main { private static final Scanner scanner = new Scanner(System.in); public static void main(String[] args) { var x = scanner.nextInt(); if(x < 1) System.out.println(x); else if(x < 10) System.out.println(x * 2 - 1); else System.out.println(x * 3 - 11); } }
- 1
信息
- ID
- 25
- 时间
- 2000ms
- 内存
- 128MiB
- 难度
- 3
- 标签
- 递交数
- 1076
- 已通过
- 592
- 上传者