結果
問題 | No.857 素振り |
ユーザー | Yosuke Yamaguchi |
提出日時 | 2021-01-21 22:42:45 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 578 bytes |
コンパイル時間 | 4,050 ms |
コンパイル使用メモリ | 74,352 KB |
実行使用メモリ | 41,412 KB |
最終ジャッジ日時 | 2024-06-07 09:37:03 |
合計ジャッジ時間 | 5,702 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
40,808 KB |
testcase_01 | AC | 131 ms
40,836 KB |
testcase_02 | AC | 131 ms
41,228 KB |
testcase_03 | AC | 129 ms
41,124 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
import java.util.Scanner; // https://yukicoder.me/problems/no/857 public class Suburi857 { public static void main(String[] args) { // 標準入力から読み込む際に、Scan Scanner sc = new Scanner(System.in); // String 1つ分を読み込む int x = Integer.parseInt(sc.next()); int y = Integer.parseInt(sc.next()); int z = Integer.parseInt(sc.next()); int rest = 0; if (z >= x) rest += 1; if (z >= y) rest += 1; int result = z - rest; if (result < 0) result = 0; System.out.println(result); } }