結果
問題 | No.926 休日の平均 |
ユーザー | nogisun |
提出日時 | 2020-03-26 20:55:30 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 305 bytes |
コンパイル時間 | 3,917 ms |
コンパイル使用メモリ | 81,592 KB |
実行使用メモリ | 56,428 KB |
最終ジャッジ日時 | 2025-01-02 03:05:03 |
合計ジャッジ時間 | 6,968 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 104 ms
54,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 109 ms
54,280 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 115 ms
54,296 KB |
testcase_19 | AC | 109 ms
54,276 KB |
testcase_20 | AC | 110 ms
54,272 KB |
testcase_21 | WA | - |
testcase_22 | AC | 112 ms
54,484 KB |
testcase_23 | AC | 110 ms
54,376 KB |
ソースコード
import java.util.Scanner; public class No926{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int yearDay = sc.nextInt(); int weekDay = sc.nextInt(); int kyuzitsu = sc.nextInt(); System.out.println(yearDay/weekDay*kyuzitsu); } }