結果
問題 | No.857 素振り |
ユーザー | GodNegoto |
提出日時 | 2019-11-07 16:14:45 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 446 bytes |
コンパイル時間 | 3,437 ms |
コンパイル使用メモリ | 74,040 KB |
実行使用メモリ | 79,416 KB |
最終ジャッジ日時 | 2024-09-15 00:41:51 |
合計ジャッジ時間 | 6,638 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
46,684 KB |
testcase_01 | AC | 133 ms
54,392 KB |
testcase_02 | AC | 134 ms
41,000 KB |
testcase_03 | AC | 132 ms
41,396 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
package algo; import java.util.Scanner; //import algo.*; public class sample7 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); long X = sc.nextLong(); long Y = sc.nextLong(); long Z = sc.nextLong(); long cnt = 0; for(long i=1; i <= Z; i++) { if(i == X) { } else if (i == Y) { } else { cnt++; } } System.out.println(cnt); } }