結果
問題 | No.857 素振り |
ユーザー | fal_rnd |
提出日時 | 2019-11-22 00:45:30 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 236 bytes |
コンパイル時間 | 1,988 ms |
コンパイル使用メモリ | 74,752 KB |
実行使用メモリ | 55,812 KB |
最終ジャッジ日時 | 2024-10-11 02:27:04 |
合計ジャッジ時間 | 3,975 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
53,900 KB |
testcase_01 | AC | 127 ms
54,060 KB |
testcase_02 | AC | 132 ms
54,032 KB |
testcase_03 | AC | 131 ms
53,872 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
import java.util.*; class Main{ public static void main(String[] $) { Scanner s=new Scanner(System.in); int a=s.nextInt(),b=s.nextInt(),c=s.nextInt(); int r=c; if(a<=c) --r; if(b<=c) --r; System.out.println(r); } }