結果
問題 | No.46 はじめのn歩 |
ユーザー | yamax3232 |
提出日時 | 2017-02-09 20:07:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 409 bytes |
コンパイル時間 | 3,611 ms |
コンパイル使用メモリ | 75,112 KB |
実行使用メモリ | 54,448 KB |
最終ジャッジ日時 | 2024-06-07 18:04:01 |
合計ジャッジ時間 | 5,733 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 138 ms
54,448 KB |
testcase_02 | WA | - |
testcase_03 | AC | 132 ms
54,160 KB |
testcase_04 | AC | 135 ms
53,940 KB |
testcase_05 | AC | 136 ms
53,904 KB |
testcase_06 | WA | - |
testcase_07 | AC | 137 ms
53,996 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import java.util.Scanner; public class FirstStep { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner kb=new Scanner(System.in); int a=kb.nextInt(); int b=kb.nextInt(); double time=(double)b/(double)a; if((0.5<=time%2&&time%2<1)||(1.5<=time%2&&time%2<2.0)){ time++; } else if(time>0){ time++; } System.out.printf("%d\n", (int)time); kb.close(); } }