結果
問題 | No.46 はじめのn歩 |
ユーザー | packer_jp |
提出日時 | 2017-01-21 18:56:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 336 bytes |
コンパイル時間 | 3,275 ms |
コンパイル使用メモリ | 76,052 KB |
実行使用メモリ | 42,020 KB |
最終ジャッジ日時 | 2024-06-02 08:53:15 |
合計ジャッジ時間 | 4,786 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import java.util.Scanner; public class Practice { public static void main(String args[]){ Scanner scanner=new Scanner(System.in); int a=scanner.nextInt(),b=scanner.nextInt(); if(b%a==0){ System.out.println(b/a+"\n"); }else{ System.out.println((b/a+1)+"\n"); } } }