結果
問題 | No.128 お年玉(1) |
ユーザー |
|
提出日時 | 2018-04-16 21:45:25 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 57 ms / 5,000 ms |
コード長 | 422 bytes |
コンパイル時間 | 2,055 ms |
コンパイル使用メモリ | 74,576 KB |
実行使用メモリ | 50,320 KB |
最終ジャッジ日時 | 2024-10-01 10:49:16 |
合計ジャッジ時間 | 4,064 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
import java.io.IOException;import java.io.BufferedReader;import java.io.InputStreamReader;class Main{public static void main(String[] args) throws IOException{BufferedReader br = new BufferedReader(new InputStreamReader(System.in));long max = Long.parseLong(br.readLine());max /= 1000;int m = Integer.parseInt(br.readLine());System.out.println(max / m * 1000);}}