結果
| 問題 |
No.46 はじめのn歩
|
| コンテスト | |
| ユーザー |
ssabcire
|
| 提出日時 | 2017-08-20 14:30:23 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 137 bytes |
| コンパイル時間 | 129 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-10-14 17:24:33 |
| 合計ジャッジ時間 | 1,001 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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