結果

問題 No.746 7の倍数
ユーザー ldsybldsyb
提出日時 2018-10-19 21:49:28
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 54 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 11,444 KB
実行使用メモリ 16,164 KB
最終ジャッジ日時 2023-08-12 00:48:58
合計ジャッジ時間 3,257 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 85 ms
15,160 KB
testcase_02 AC 83 ms
15,148 KB
testcase_03 AC 88 ms
16,164 KB
testcase_04 AC 84 ms
15,592 KB
testcase_05 AC 83 ms
15,496 KB
testcase_06 AC 83 ms
15,900 KB
testcase_07 AC 84 ms
15,840 KB
testcase_08 AC 82 ms
15,728 KB
testcase_09 AC 80 ms
15,692 KB
testcase_10 AC 80 ms
15,348 KB
testcase_11 AC 85 ms
15,784 KB
testcase_12 AC 86 ms
15,976 KB
testcase_13 AC 82 ms
15,912 KB
testcase_14 AC 84 ms
15,908 KB
testcase_15 AC 86 ms
15,736 KB
testcase_16 AC 81 ms
15,936 KB
testcase_17 AC 83 ms
15,836 KB
testcase_18 AC 86 ms
15,788 KB
testcase_19 AC 85 ms
15,752 KB
testcase_20 AC 82 ms
15,672 KB
testcase_21 AC 81 ms
15,584 KB
testcase_22 AC 85 ms
15,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
p = 10 ** n
q = p / 7
puts "0." + q.to_s
0