結果
問題 | No.294 SuperFizzBuzz |
ユーザー | javy |
提出日時 | 2015-11-03 01:32:42 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,117 bytes |
コンパイル時間 | 12,547 ms |
コンパイル使用メモリ | 438,512 KB |
実行使用メモリ | 54,440 KB |
最終ジャッジ日時 | 2024-11-19 15:20:01 |
合計ジャッジ時間 | 15,918 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
package Yukicoder /** * Created by hichikawa on 2015/11/02. */ fun main(args: Array<String>) { fun readLineLongArray() : List<Long> { val str = readLine() as String val arrStr = str.split(" ") val ret = arrStr.map { it.toLong() } return ret } fun readLineLong() : Long { val str = readLine() as String return str.toLong() } fun readLineStringArray() : List<String> { val str = readLine() as String val arrStr = str.split(" ") return arrStr } var index = readLineLong() var num : Int = 0b0111 var keta = 3 while (index > 1) { var bn = Integer.bitCount(num) if (bn == keta) { keta++ num = 1 } else { num += 0b10 } bn = Integer.bitCount(num) if (bn % 3 == 0) { index-- } } val ans = Integer.toBinaryString(num) for (i in 0..(keta-ans.length)) { print(3) } for (ch in ans) { if (ch == '0') print(3) else print(5) } println() }