結果
| 問題 | No.136 Yet Another GCD Problem |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-08 03:47:55 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
AC
|
| 実行時間 | 67 ms / 5,000 ms |
| + 339µs | |
| コード長 | 95 bytes |
| 記録 | |
| コンパイル時間 | 236 ms |
| コンパイル使用メモリ | 95,600 KB |
| 実行使用メモリ | 82,816 KB |
| 最終ジャッジ日時 | 2026-08-29 15:22:50 |
| 合計ジャッジ時間 | 4,838 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 39 |
ソースコード
n,k = map(int,input().split())
ans = 1
for i in range(1,n-1):
if n%i==0: ans = i
print(ans)
convexineq