結果
| 問題 | No.442 和と積 |
| コンテスト | |
| ユーザー |
ixmel
|
| 提出日時 | 2017-04-11 20:57:18 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 108 bytes |
| 記録 | |
| コンパイル時間 | 431 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 41,520 KB |
| 最終ジャッジ日時 | 2026-04-02 00:43:59 |
| 合計ジャッジ時間 | 6,497 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 18 |
ソースコード
def gcd(a,b): a,b=max(a,b),min(a,b) while a%b: a,b=b,a%b return b a,b=map(int,input()) print(gcd(a,b))
ixmel