結果

問題 No.1157 Many Quotients easy
ユーザー neko_the_shadow
提出日時 2020-08-26 10:35:12
言語 Bash
(Bash 5.2.21)
結果
TLE  
実行時間 -
コード長 86 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-11-07 01:28:10
合計ジャッジ時間 3,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 2
other AC * 1 TLE * 1 -- * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/bin/bash

read n
seq $n | xargs -I{} printf "$n/{}\n" | bc | sort -n | uniq | wc -l
0