結果
問題 | No.740 幻の木 |
ユーザー | Beat7501 |
提出日時 | 2018-10-05 21:36:57 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 351 bytes |
コンパイル時間 | 3,204 ms |
コンパイル使用メモリ | 74,280 KB |
実行使用メモリ | 56,136 KB |
最終ジャッジ日時 | 2024-10-12 12:55:54 |
合計ジャッジ時間 | 4,941 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
54,204 KB |
testcase_01 | AC | 127 ms
54,356 KB |
testcase_02 | WA | - |
testcase_03 | AC | 133 ms
53,840 KB |
testcase_04 | WA | - |
testcase_05 | AC | 128 ms
54,072 KB |
testcase_06 | WA | - |
testcase_07 | AC | 130 ms
54,208 KB |
testcase_08 | AC | 129 ms
53,880 KB |
ソースコード
import java.util.*; class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int p = sc.nextInt(); int q = sc.nextInt(); int a = 0; while(n > 0){ a++; if(a >= p && a <= p + q - 1){ n -= 2*m; }else{ n -=m; } } System.out.print(a); } }