結果
| 問題 | No.136 Yet Another GCD Problem |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-08 03:47:28 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 87 bytes |
| 記録 | |
| コンパイル時間 | 203 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 65,152 KB |
| 最終ジャッジ日時 | 2026-04-06 07:58:45 |
| 合計ジャッジ時間 | 2,668 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 37 RE * 2 |
ソースコード
n,k = map(int,input().split())
for i in range(1,n-1):
if n%i==0: ans = i
print(ans)
convexineq