結果

問題 No.1057 素敵な日
ユーザー 拓哉拓哉
提出日時 2020-07-21 22:41:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 1,753 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-06-10 03:06:14
合計ジャッジ時間 3,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,484 KB
testcase_01 AC 108 ms
41,060 KB
testcase_02 WA -
testcase_03 AC 99 ms
40,308 KB
testcase_04 AC 109 ms
41,544 KB
testcase_05 AC 102 ms
40,268 KB
testcase_06 AC 111 ms
41,344 KB
testcase_07 AC 99 ms
40,160 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int a=sc.nextInt(),b=sc.nextInt();
		
		int i=0;
		for(;a>0&&b>0;i++){
			if(i%2==0)a--;
			if(i%2==1)b--;
		}
		System.out.println(i);
		sc.close();
		return;
	}
}
0