結果
問題 | No.1057 素敵な日 |
ユーザー | 拓哉 |
提出日時 | 2020-07-21 22:46:58 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 428 bytes |
コンパイル時間 | 2,515 ms |
コンパイル使用メモリ | 74,552 KB |
実行使用メモリ | 55,844 KB |
最終ジャッジ日時 | 2024-06-10 03:15:41 |
合計ジャッジ時間 | 3,282 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 100 ms
40,208 KB |
testcase_01 | AC | 100 ms
40,100 KB |
testcase_02 | AC | 99 ms
40,264 KB |
testcase_03 | WA | - |
testcase_04 | AC | 109 ms
40,192 KB |
testcase_05 | WA | - |
testcase_06 | AC | 110 ms
41,192 KB |
testcase_07 | WA | - |
testcase_08 | AC | 98 ms
40,040 KB |
ソースコード
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 shorter=0,longer=0; if(a>b){ shorter=b; longer=a; }else{ shorter=a; longer=b; } int i=0; while(shorter>=0){ if(i%2==0)shorter--; else longer--; i++; } System.out.println(i-1); sc.close(); return; } }