結果
| 問題 | No.3028 No.9999 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-06 23:30:50 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 282 bytes |
| 記録 | |
| コンパイル時間 | 704 ms |
| コンパイル使用メモリ | 21,412 KB |
| 実行使用メモリ | 20,604 KB |
| 最終ジャッジ日時 | 2026-07-06 21:52:34 |
| 合計ジャッジ時間 | 7,920 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 RE * 10 |
ソースコード
def main():
inp = int(input())
num = ""
count = 0
loop_flg = True
while loop_flg:
num = num + "9"
count += 1
if int(num) % inp == 0:
loop_flg = False
print(count)
if __name__ == '__main__':
main()