結果
問題 | No.339 何人が回答したのか |
ユーザー |
![]() |
提出日時 | 2024-01-28 21:44:34 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 1,000 ms |
コード長 | 126 bytes |
コンパイル時間 | 395 ms |
コンパイル使用メモリ | 81,848 KB |
実行使用メモリ | 52,480 KB |
最終ジャッジ日時 | 2024-09-28 09:57:40 |
合計ジャッジ時間 | 4,427 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 61 |
ソースコード
N = int(input())A = [int(input()) for _ in range(N)]from math import gcdx = 100for a in A:x = gcd(x,a)print(100//x)