結果
問題 | No.2038 Strange Arrange |
ユーザー | publfl2 |
提出日時 | 2022-08-12 22:28:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 250 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 18:18:26 |
合計ジャッジ時間 | 1,288 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <stdio.h> int ans[10010]; int main() { int start = 1; for(int i=1;i<=9;i++) { int a = (1<<(i-1)); for(int j=start;j<=start+a-1;j++) ans[j] = i; start += a; } int a; scanf("%d",&a); for(int i=1;i<=a;i++) printf("%d",ans[i]); }