結果
| 問題 |
No.810 割った余りの個数
|
| コンテスト | |
| ユーザー |
Sushin
|
| 提出日時 | 2019-04-30 21:55:27 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 174 bytes |
| コンパイル時間 | 339 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 21,376 KB |
| 最終ジャッジ日時 | 2024-12-31 10:56:53 |
| 合計ジャッジ時間 | 29,986 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 TLE * 9 |
ソースコード
import sys
L, R, M = input().split()
L = int(L)
R = int(R)
M = int(M)
out = 0
for i in range(L, L+M):
# print(i)
if (i > R):
break
out += 1
print(out)
Sushin