結果

問題 No.313 π
ユーザー tanukidontanukidon
提出日時 2018-03-15 23:10:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 218 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 11,368 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2023-08-23 11:23:05
合計ジャッジ時間 4,349 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
15,536 KB
testcase_01 AC 82 ms
15,524 KB
testcase_02 AC 81 ms
15,524 KB
testcase_03 AC 80 ms
15,308 KB
testcase_04 AC 81 ms
15,560 KB
testcase_05 AC 81 ms
15,436 KB
testcase_06 AC 82 ms
15,616 KB
testcase_07 AC 82 ms
15,416 KB
testcase_08 AC 83 ms
15,420 KB
testcase_09 AC 82 ms
15,556 KB
testcase_10 AC 82 ms
15,308 KB
testcase_11 AC 83 ms
15,616 KB
testcase_12 AC 83 ms
15,332 KB
testcase_13 AC 82 ms
15,388 KB
testcase_14 AC 83 ms
15,536 KB
testcase_15 AC 82 ms
15,564 KB
testcase_16 AC 83 ms
15,340 KB
testcase_17 AC 83 ms
15,428 KB
testcase_18 AC 82 ms
15,608 KB
testcase_19 AC 82 ms
15,308 KB
testcase_20 AC 86 ms
15,316 KB
testcase_21 AC 82 ms
15,504 KB
testcase_22 AC 82 ms
15,308 KB
testcase_23 AC 81 ms
15,404 KB
testcase_24 AC 83 ms
15,520 KB
testcase_25 AC 84 ms
15,376 KB
testcase_26 AC 82 ms
15,556 KB
testcase_27 AC 82 ms
15,520 KB
testcase_28 AC 82 ms
15,304 KB
testcase_29 AC 81 ms
15,316 KB
testcase_30 AC 81 ms
15,376 KB
testcase_31 AC 81 ms
15,580 KB
testcase_32 AC 82 ms
15,412 KB
testcase_33 AC 82 ms
15,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets
a = [20104, 20063, 19892, 20011, 19874, 20199, 19898, 20163, 19956, 19841]
10.times do |i|
a[i] -= n.count("#{i}")
end
b,c = 0,0
a.each_with_index do |i,j|
b = j if i == -1
c = j if i == 1
end
puts "#{b} #{c}"
0