結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
ssabcire
|
| 提出日時 | 2017-08-20 14:30:23 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 137 bytes |
| 記録 | |
| コンパイル時間 | 546 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-02 03:52:27 |
| 合計ジャッジ時間 | 2,835 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 10 |
ソースコード
def hosuu(a, b): num = 0 tmp = a while a <= b: num = num + 1 a = a + tmp return num print(hosuu(10, 100))
ssabcire