結果
問題 | No.1033 乱数サイ |
ユーザー | YU Hirose |
提出日時 | 2024-06-18 23:28:53 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 144 bytes |
コンパイル時間 | 539 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 67,264 KB |
最終ジャッジ日時 | 2024-06-18 23:28:59 |
合計ジャッジ時間 | 5,812 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 12 TLE * 1 |
ソースコード
n, k = map(int, input().split()) res = 0 cnt = 0 for i in range(n+1): for _ in range(k): res += i cnt += 1 print(res / cnt)