結果

問題 No.207 世界のなんとか
ユーザー uchida_tuchida_t
提出日時 2023-04-14 14:39:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 313 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 12,512 ms
コンパイル使用メモリ 440,544 KB
実行使用メモリ 57,160 KB
最終ジャッジ日時 2024-10-10 06:24:53
合計ジャッジ時間 19,822 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
56,852 KB
testcase_01 AC 302 ms
56,816 KB
testcase_02 AC 306 ms
57,160 KB
testcase_03 AC 308 ms
57,072 KB
testcase_04 AC 304 ms
56,956 KB
testcase_05 AC 303 ms
56,968 KB
testcase_06 AC 305 ms
56,824 KB
testcase_07 AC 305 ms
56,932 KB
testcase_08 AC 298 ms
56,824 KB
testcase_09 AC 311 ms
56,984 KB
testcase_10 AC 310 ms
57,072 KB
testcase_11 AC 313 ms
57,128 KB
testcase_12 AC 313 ms
57,096 KB
testcase_13 AC 309 ms
56,996 KB
testcase_14 AC 313 ms
56,988 KB
testcase_15 AC 310 ms
56,984 KB
testcase_16 AC 302 ms
56,944 KB
testcase_17 AC 297 ms
56,916 KB
testcase_18 AC 300 ms
56,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
	var (a,b)=readLine()!!.split(" ").map(String::toInt)
	for(i in a..b) {
		if (i % 3 == 0 || i.toString().contains("3")) {
			println(i)
		}
	}
}
0