Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5686 朱嘉铭 汽水瓶 C++ 编译错误 0 0 MS 0 KB 579 2020-08-14 17:11:04

Tests(0/0):


import java.util.*; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int n=sc.nextInt();//空汽水瓶数 int count=0;//能喝汽水瓶数 if(n>0){ while(n>1){ count+=n/3; n=n%3+n/3; if(n==2){ n++; } } System.out.println(count); } } sc.close(); } }


测评信息: