結果
| 問題 |
No.537 ユーザーID
|
| コンテスト | |
| ユーザー |
surprise_tanaka
|
| 提出日時 | 2018-11-27 15:06:45 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 139 bytes |
| コンパイル時間 | 169 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 17,696 KB |
| 最終ジャッジ日時 | 2024-06-23 16:25:27 |
| 合計ジャッジ時間 | 5,246 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 6 TLE * 1 -- * 19 |
ソースコード
N = int(input())
count = int()
for i in range(1,N+1):
for j in range(1,N+1):
if i * j == N:
count += 1
print(count)
surprise_tanaka