結果
| 問題 |
No.836 じょうよ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-06-12 20:54:19 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 547 ms / 1,000 ms |
| コード長 | 680 bytes |
| コンパイル時間 | 2,534 ms |
| コンパイル使用メモリ | 73,916 KB |
| 実行使用メモリ | 52,972 KB |
| 最終ジャッジ日時 | 2024-10-11 20:09:27 |
| 合計ジャッジ時間 | 15,753 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 41 |
ソースコード
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.BufferedReader;
import java.util.Scanner;
class Main{
public static void main(String[] args) throws IOException{
Scanner sc = new Scanner(System.in);
long l = sc.nextLong();
long r = sc.nextLong();
int n = sc.nextInt();
int ans[] = new int[n];
while(l % n != 0 && l <= r){
ans[(int)(l%n)]++;
l++;
}
long x = (r-l)/n;
l += x * n;
while(l <= r){
ans[(int)(l%n)]++;
l++;
}
for(int i = 0; i < n; i++) System.out.println(ans[i] + x);
}
}