結果
問題 | No.339 何人が回答したのか |
ユーザー |
![]() |
提出日時 | 2016-04-14 20:43:30 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 11 ms / 1,000 ms |
コード長 | 127 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-10-04 08:54:03 |
合計ジャッジ時間 | 2,048 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 61 |
ソースコード
n=input()a=[input()for i in[0]*n]for i in range(min(a),0,-1):for j in a:if j%i!=0:breakelse:print 100/ibreak