結果

問題 No.8008 某マヨネーズの網目柄
ユーザー keiden
提出日時 2024-09-13 18:55:37
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 28,544 KB
最終ジャッジ日時 2024-09-13 18:55:42
合計ジャッジ時間 3,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

(import
  (scheme base)
  (scheme read)
  (scheme write)
)

(define yuki3008
  (let*
    (
      (n (read))
      (m (read))
    )
    (write (gcd n m))
    (display "\n")
  )
)
0