結果
問題 |
No.1033 乱数サイ
|
ユーザー |
|
提出日時 | 2022-02-26 12:27:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 68,500 KB |
最終ジャッジ日時 | 2024-07-04 08:32:35 |
合計ジャッジ時間 | 7,832 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 12 TLE * 2 -- * 1 |
ソースコード
n,k = map(int,input().split()) result = 0 for i in range(n+1): for j in range(k): #print((n+1)*k,i) result+=i print(result/((n+1)*k))