結果

問題 No.857 素振り
ユーザー DaiKi117DaiKi117
提出日時 2019-10-09 14:01:23
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 348 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 73,820 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-11-16 19:10:45
合計ジャッジ時間 4,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,056 KB
testcase_01 AC 121 ms
40,152 KB
testcase_02 AC 125 ms
41,132 KB
testcase_03 AC 126 ms
41,172 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String args[]){
    Scanner scanner = new Scanner(System.in);
    int x = scanner.nextInt();
    int y = scanner.nextInt();
    int z = scanner.nextInt();
    int ans = z;
    if(z >= x){
      ans -= 1;
    }
    if(z >= y){
      ans -= 1;
    }
    System.out.println(ans);
  }
}
0