結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
surprise_tanaka
|
| 提出日時 | 2018-11-27 15:06:45 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 139 bytes |
| 記録 | |
| コンパイル時間 | 680 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 30,844 KB |
| 最終ジャッジ日時 | 2026-03-08 17:15:58 |
| 合計ジャッジ時間 | 251,588 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 6 TLE * 20 |
ソースコード
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