解题思路:
似乎是贪心?
参考代码:
import java.util.Scanner; public class Main1108 { //速度 和 魔法消耗 static int SPEND = 17; static int m = 10; public static void main(String[] args) { Scanner sc = new Scanner(System.in); //魔法初始值 int M = sc.nextInt(); //距离 int S = sc.nextInt(); //最终下降的时间 int T = sc.nextInt(); int flash = 0; int distance = 0; for (int i = 1; i <= T; i++) { if (M >= 10) { M -= m; flash += 60; } else { M += 4; } distance = Math.max(distance + SPEND, flash); if (distance >= S) { System.out.println("Yes"); System.out.print(i); return; } } System.out.println("No"); System.out.print(distance); } }
0.0分
1 人评分
字符逆序 (C语言代码)浏览:706 |
Cylinder (C语言描述,蓝桥杯)浏览:1279 |
1013题解浏览:596 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:537 |
矩形面积交 (C++代码)浏览:1204 |
简单的a+b (C语言代码)浏览:618 |
数字游戏 (C++代码)浏览:1240 |
1054题解浏览:516 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1496 |
青年歌手大奖赛_评委会打分 (C语言代码)浏览:2248 |