結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-26 21:38:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 764 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 7,851 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 56,708 KB
最終ジャッジ日時 2024-06-25 07:26:13
合計ジャッジ時間 8,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,188 KB
testcase_01 AC 129 ms
53,812 KB
testcase_02 AC 130 ms
54,044 KB
testcase_03 AC 139 ms
53,988 KB
testcase_04 AC 183 ms
54,272 KB
testcase_05 AC 286 ms
56,708 KB
testcase_06 AC 510 ms
51,364 KB
testcase_07 AC 764 ms
55,520 KB
testcase_08 AC 715 ms
54,704 KB
testcase_09 AC 643 ms
52,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;
import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	static int[] dy = {-1,0,1,0};
	static int[] dx = {0,1,0,-1};
	public static void main(String[] args) {
		String s = sc.next();
		int oNum = 0;
		int xNum = 0;
		for (int i=0; i<s.length(); i++) {
			if (s.charAt(i)=='o') oNum++;
			else xNum++;
		}
		for (int i=0; i<s.length(); i++) {
			out.println((100*oNum)/(oNum+xNum*1.0));
			if (s.charAt(i)=='o') oNum--;
			else xNum--;
		}
	}
}
0